All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.rosetta.jptlegalagreement.model.validation.exists.CsaInitialMargin2016JapaneseLawOnlyExistsValidator Maven / Gradle / Ivy
package com.rosetta.jptlegalagreement.model.validation.exists;
import com.google.common.collect.ImmutableMap;
import com.rosetta.jptlegalagreement.model.AdditionalRepresentation;
import com.rosetta.jptlegalagreement.model.CalculationDateLocation;
import com.rosetta.jptlegalagreement.model.ConditionsPrecedent;
import com.rosetta.jptlegalagreement.model.ContactElection;
import com.rosetta.jptlegalagreement.model.CreditSupportObligationsInitialMargin;
import com.rosetta.jptlegalagreement.model.CsaInitialMargin2016JapaneseLaw;
import com.rosetta.jptlegalagreement.model.DisputeResolution;
import com.rosetta.jptlegalagreement.model.FxHaircutCurrency;
import com.rosetta.jptlegalagreement.model.Method;
import com.rosetta.jptlegalagreement.model.NotificationTime;
import com.rosetta.jptlegalagreement.model.OneWayProvisions;
import com.rosetta.jptlegalagreement.model.Regime;
import com.rosetta.jptlegalagreement.model.SensitivityMethodology;
import com.rosetta.jptlegalagreement.model.Substitution;
import com.rosetta.jptlegalagreement.model.TerminationCurrencyAmendment;
import com.rosetta.model.lib.path.RosettaPath;
import com.rosetta.model.lib.validation.ExistenceChecker;
import com.rosetta.model.lib.validation.ValidationResult;
import com.rosetta.model.lib.validation.ValidationResult.ValidationType;
import com.rosetta.model.lib.validation.ValidatorWithArg;
import com.rosetta.model.metafields.FieldWithMetaString;
import java.util.Map;
import java.util.Set;
import java.util.stream.Collectors;
import static com.rosetta.model.lib.validation.ValidationResult.failure;
import static com.rosetta.model.lib.validation.ValidationResult.success;
public class CsaInitialMargin2016JapaneseLawOnlyExistsValidator implements ValidatorWithArg> {
/* Casting is required to ensure types are output to ensure recompilation in Rosetta */
@Override
public ValidationResult validate(RosettaPath path, T2 o, Set fields) {
Map fieldExistenceMap = ImmutableMap.builder()
.put("baseCurrency", ExistenceChecker.isSet((FieldWithMetaString) o.getBaseCurrency()))
.put("additionalObligations", ExistenceChecker.isSet((String) o.getAdditionalObligations()))
.put("conditionsPrecedent", ExistenceChecker.isSet((ConditionsPrecedent) o.getConditionsPrecedent()))
.put("substitution", ExistenceChecker.isSet((Substitution) o.getSubstitution()))
.put("disputeResolution", ExistenceChecker.isSet((DisputeResolution) o.getDisputeResolution()))
.put("additionalRepresentation", ExistenceChecker.isSet((AdditionalRepresentation) o.getAdditionalRepresentation()))
.put("demandsAndNotices", ExistenceChecker.isSet((ContactElection) o.getDemandsAndNotices()))
.put("addressesForTransfer", ExistenceChecker.isSet((ContactElection) o.getAddressesForTransfer()))
.put("bespokeProvision", ExistenceChecker.isSet((String) o.getBespokeProvision()))
.put("regime", ExistenceChecker.isSet((Regime) o.getRegime()))
.put("oneWayProvisions", ExistenceChecker.isSet((OneWayProvisions) o.getOneWayProvisions()))
.put("method", ExistenceChecker.isSet((Method) o.getMethod()))
.put("identifiedCrossCurrencySwap", ExistenceChecker.isSet((Boolean) o.getIdentifiedCrossCurrencySwap()))
.put("sensitivityToEquity", ExistenceChecker.isSet((SensitivityMethodology) o.getSensitivityToEquity()))
.put("sensitivityToCommodity", ExistenceChecker.isSet((SensitivityMethodology) o.getSensitivityToCommodity()))
.put("fxHaircutCurrency", ExistenceChecker.isSet((FxHaircutCurrency) o.getFxHaircutCurrency()))
.put("creditSupportObligations", ExistenceChecker.isSet((CreditSupportObligationsInitialMargin) o.getCreditSupportObligations()))
.put("calculationDateLocation", ExistenceChecker.isSet((CalculationDateLocation) o.getCalculationDateLocation()))
.put("notificationTime", ExistenceChecker.isSet((NotificationTime) o.getNotificationTime()))
.put("terminationCurrency", ExistenceChecker.isSet((TerminationCurrencyAmendment) o.getTerminationCurrency()))
.put("automaticSetOff", ExistenceChecker.isSet((Boolean) o.getAutomaticSetOff()))
.build();
// Find the fields that are set
Set setFields = fieldExistenceMap.entrySet().stream()
.filter(Map.Entry::getValue)
.map(Map.Entry::getKey)
.collect(Collectors.toSet());
if (setFields.equals(fields)) {
return success("CsaInitialMargin2016JapaneseLaw", ValidationType.ONLY_EXISTS, "CsaInitialMargin2016JapaneseLaw", path, "");
}
return failure("CsaInitialMargin2016JapaneseLaw", ValidationType.ONLY_EXISTS, "CsaInitialMargin2016JapaneseLaw", path, "",
String.format("[%s] should only be set. Set fields: %s", fields, setFields));
}
}