source: java2python/jackson-t/src/test/endnego/testcode/EndNegotiation.java@ 1116

Last change on this file since 1116 was 1116, checked in by wouter, 6 weeks ago

#363 small cleanup in test code

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