Rev | Line | |
---|
[1237] | 1 | package testcode;
|
---|
[741] | 2 |
|
---|
[1116] | 3 | import org.eclipse.jdt.annotation.NonNull;
|
---|
| 4 |
|
---|
[741] | 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 | */
|
---|
[1237] | 12 | public class EndNegotiation {
|
---|
| 13 | @JsonCreator
|
---|
| 14 | public EndNegotiation(@JsonProperty("actor") @NonNull String actor) {
|
---|
[741] | 15 |
|
---|
| 16 | }
|
---|
| 17 |
|
---|
| 18 | @Override
|
---|
[1116] | 19 | public @NonNull String toString() {
|
---|
[1237] | 20 | return "EndNegotiation[" + "]";
|
---|
[741] | 21 | }
|
---|
| 22 |
|
---|
| 23 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.