我有一个POST登录请求。 它返回带有“ accessToken”的JSON。 为了执行将来的REST调用,我必须使用标头中的“ accessToken”作为授权。
所以我创建了一个命令,例如:
synchronized
....
在测试中,我想使用返回的access_token:
// rest of the code
class Buffer {
private int counter = 0;
// added synchronized keyword to let only one thread
// be it inc or dec thread to manipulate data at a time
public synchronized void inc() { counter++; }
public synchronized void dec() { counter--; }
public int getCounter() { return counter; }
}
// rest of the code