source: src/main/java/bargainingchips/protocol/ValidationSuccessWithOutcome.java@ 325

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

validate gives a ValidationResult

File size: 308 bytes
Line 
1package bargainingchips.protocol;
2
3import bargainingchips.actions.Offer;
4/**
5 * The offer was valid and the negotiation has ended with a deal
6 */
7public class ValidationSuccessWithOutcome extends ValidationResult
8{
9 public ValidationSuccessWithOutcome(Offer o)
10 {
11 super(true, true, o);
12 }
13}
Note: See TracBrowser for help on using the repository browser.