source: src/main/java/bargainingchips/protocol/ValidationSuccessWithAgreement.java@ 337

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

Outcome defined

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