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

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

Outcome defined

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