bernard
authored
|
1
|
package pl.it_crowd.youtrack.api;
|
bernard
authored
|
2
|
|
bernard
authored
|
3
4
|
import pl.it_crowd.youtrack.api.defaults.Fields;
import pl.it_crowd.youtrack.api.defaults.StateValues;
|
bernard
authored
|
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
public class Command {
// ------------------------------ FIELDS ------------------------------
protected StringBuilder command = new StringBuilder();
// -------------------------- STATIC METHODS --------------------------
public static Command assigneeCommand(String assignee)
{
return new Command().assignee(assignee);
}
public static Command stateCommand(String state)
{
return new Command().state(state);
}
public static Command stateCommand(StateValues state)
{
return new Command().state(state);
}
// --------------------------- CONSTRUCTORS ---------------------------
|
bernard
authored
|
30
|
protected Command()
|
bernard
authored
|
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
{
}
// ------------------------ CANONICAL METHODS ------------------------
@Override
public String toString()
{
return command.toString().trim();
}
// -------------------------- OTHER METHODS --------------------------
public Command assignee(String assignee)
{
return command(Fields.assignee, assignee);
}
public Command state(String state)
{
return command(Fields.state, state);
}
public Command state(StateValues state)
{
if (state.getCommandValue() == null) {
throw new IllegalArgumentException("Cannot set readonly state: " + state);
}
return state(state.getCommandValue());
}
|
bernard
authored
|
62
|
protected Command command(Commander commander, String argument)
|
bernard
authored
|
63
|
{
|
bernard
authored
|
64
|
this.command.append(" ").append(commander.getCommand()).append(" ").append(argument);
|
bernard
authored
|
65
66
67
|
return this;
}
}
|