package bargainingchips.protocol; import bargainingchips.actions.Offer; /** * The offer was valid and the negotiation has ended with a deal */ public class ValidationSuccessWithOutcome extends ValidationResult { public ValidationSuccessWithOutcome(Offer o) { super(true, true, o); } }