Last change
on this file since 741 was 741, checked in by wouter, 11 months ago |
#252 fixed error message, added new tests, fixed existing tests
|
File size:
426 bytes
|
Rev | Line | |
---|
[741] | 1 | package testcode.actions;
|
---|
| 2 |
|
---|
| 3 | import com.fasterxml.jackson.annotation.JsonCreator;
|
---|
| 4 | import com.fasterxml.jackson.annotation.JsonProperty;
|
---|
| 5 |
|
---|
| 6 | /**
|
---|
| 7 | * Indicates that a party turns away from the negotiation and.
|
---|
| 8 | *
|
---|
| 9 | */
|
---|
| 10 | public class EndNegotiation {
|
---|
| 11 |
|
---|
| 12 | @JsonCreator
|
---|
| 13 | public EndNegotiation(@JsonProperty("actor") PartyId id) {
|
---|
| 14 | super(id);
|
---|
| 15 | }
|
---|
| 16 |
|
---|
| 17 | @Override
|
---|
| 18 | public String toString() {
|
---|
| 19 | return "EndNegotiation[" + getActor() + "]";
|
---|
| 20 | }
|
---|
| 21 |
|
---|
| 22 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.