Rev | Line | |
---|
[505] | 1 | package testcode.actions;
|
---|
| 2 |
|
---|
[1116] | 3 | import org.eclipse.jdt.annotation.NonNull;
|
---|
| 4 |
|
---|
[505] | 5 | import com.fasterxml.jackson.annotation.JsonCreator;
|
---|
| 6 | import com.fasterxml.jackson.annotation.JsonProperty;
|
---|
| 7 |
|
---|
| 8 | /**
|
---|
| 9 | * Indicates that a party turns away from the negotiation and.
|
---|
| 10 | *
|
---|
| 11 | */
|
---|
| 12 | public class EndNegotiation extends AbstractAction {
|
---|
| 13 |
|
---|
| 14 | @JsonCreator
|
---|
[1116] | 15 | public EndNegotiation(@JsonProperty("actor") @NonNull PartyId actor) {
|
---|
[741] | 16 | super(actor);
|
---|
[505] | 17 | }
|
---|
| 18 |
|
---|
| 19 | @Override
|
---|
[1116] | 20 | public @NonNull String toString() {
|
---|
[505] | 21 | return "EndNegotiation[" + getActor() + "]";
|
---|
| 22 | }
|
---|
| 23 |
|
---|
| 24 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.