public void toString(ToStringBuilder toStringBuilder) { super.toString(toStringBuilder); { List<DataHandlingPolicyType> theDataHandlingPolicy; theDataHandlingPolicy = this.getDataHandlingPolicy(); toStringBuilder.append("dataHandlingPolicy", theDataHandlingPolicy); } { DataHandlingPreferencesType theDataHandlingPreferences; theDataHandlingPreferences = this.getDataHandlingPreferences(); toStringBuilder.append("dataHandlingPreferences", theDataHandlingPreferences); } { StickyPolicyType theStickyPolicy; theStickyPolicy = this.getStickyPolicy(); toStringBuilder.append("stickyPolicy", theStickyPolicy); } { CredentialRequirementsType theCredentialRequirements; theCredentialRequirements = this.getCredentialRequirements(); toStringBuilder.append("credentialRequirements", theCredentialRequirements); } { ProvisionalActionsType theProvisionalActions; theProvisionalActions = this.getProvisionalActions(); toStringBuilder.append("provisionalActions", theProvisionalActions); } }
public void hashCode(HashCodeBuilder hashCodeBuilder) { super.hashCode(hashCodeBuilder); hashCodeBuilder.append(this.getDataHandlingPolicy()); hashCodeBuilder.append(this.getDataHandlingPreferences()); hashCodeBuilder.append(this.getStickyPolicy()); hashCodeBuilder.append(this.getCredentialRequirements()); hashCodeBuilder.append(this.getProvisionalActions()); }
public void equals(Object object, EqualsBuilder equalsBuilder) { if (!(object instanceof RuleType)) { equalsBuilder.appendSuper(false); return; } if (this == object) { return; } super.equals(object, equalsBuilder); final RuleType that = ((RuleType) object); equalsBuilder.append(this.getDataHandlingPolicy(), that.getDataHandlingPolicy()); equalsBuilder.append(this.getDataHandlingPreferences(), that.getDataHandlingPreferences()); equalsBuilder.append(this.getStickyPolicy(), that.getStickyPolicy()); equalsBuilder.append(this.getCredentialRequirements(), that.getCredentialRequirements()); equalsBuilder.append(this.getProvisionalActions(), that.getProvisionalActions()); }