source: src/main/java/bargainingchips/protocol/ValidationSuccess.java@ 319

Last change on this file since 319 was 319, checked in by Tim Baarslag, 5 years ago

validate gives a ValidationResult

File size: 237 bytes
RevLine 
[319]1package bargainingchips.protocol;
2/**
3 * The offer was valid and the negotiation is still ongoing
4 */
5public class ValidationSuccess extends ValidationResult
6{
7 public ValidationSuccess()
8 {
9 super(true, false, null);
10 }
11}
Note: See TracBrowser for help on using the repository browser.