/* * Generated by XDoclet - Do not edit! */ package hero.rules.data; /** * Value object for BnRole. * * Notice, this object is used to represent the state of an * BnRole object. This value object * Is not connected to the database in any way, it is just a normal object used * as a container for data from an EJB. * * @xdoclet-generated at ${TODAY} * @copyright The XDoclet Team * @author XDoclet * @version 3.0 */ public class BnRoleValue extends java.lang.Object implements java.io.Serializable, java.lang.Cloneable { private java.lang.String id; private boolean idHasBeenSet = false; private java.lang.String description; private boolean descriptionHasBeenSet = false; private java.lang.String name; private boolean nameHasBeenSet = false; private hero.interfaces.BnRoleMapperValue BnRoleMapper; private boolean BnRoleMapperHasBeenSet = false; private hero.interfaces.BnRolePK primaryKey; public BnRoleValue() { primaryKey = new hero.interfaces.BnRolePK(); } public BnRoleValue( java.lang.String id,java.lang.String description,java.lang.String name ) { setId(id); setDescription(description); setName(name); primaryKey = new hero.interfaces.BnRolePK(this.getId()); } /** * @deprecated use {@link #clone} */ public BnRoleValue( BnRoleValue otherValue ) { this.id = otherValue.id; idHasBeenSet = true; this.description = otherValue.description; descriptionHasBeenSet = true; this.name = otherValue.name; nameHasBeenSet = true; this.BnRoleMapper = otherValue.BnRoleMapper; BnRoleMapperHasBeenSet = true; primaryKey = new hero.interfaces.BnRolePK(this.getId()); } public hero.interfaces.BnRolePK getPrimaryKey() { return primaryKey; } public void setPrimaryKey( hero.interfaces.BnRolePK primaryKey) { // it's also nice to update PK object - just in case // somebody would ask for it later... this.primaryKey = primaryKey; setId( primaryKey.id ); } public java.lang.String getId() { return this.id; } public void setId( java.lang.String id ) { this.id = id; idHasBeenSet = true; primaryKey.setId(id); } public boolean idHasBeenSet(){ return idHasBeenSet; } public java.lang.String getDescription() { return this.description; } public void setDescription( java.lang.String description ) { this.description = description; descriptionHasBeenSet = true; } public boolean descriptionHasBeenSet(){ return descriptionHasBeenSet; } public java.lang.String getName() { return this.name; } public void setName( java.lang.String name ) { this.name = name; nameHasBeenSet = true; } public boolean nameHasBeenSet(){ return nameHasBeenSet; } public hero.interfaces.BnRoleMapperValue getBnRoleMapper() { return this.BnRoleMapper; } public void setBnRoleMapper( hero.interfaces.BnRoleMapperValue BnRoleMapper ) { this.BnRoleMapper = BnRoleMapper; BnRoleMapperHasBeenSet = true; } public boolean bnRoleMapperHasBeenSet() { return BnRoleMapperHasBeenSet; } public String toString() { StringBuffer str = new StringBuffer("{"); str.append("id=" + getId() + " " + "description=" + getDescription() + " " + "name=" + getName()); str.append('}'); return(str.toString()); } /** * A Value Object has an identity if the attributes making its Primary Key have all been set. An object without identity is never equal to any other object. * * @return true if this instance has an identity. */ protected boolean hasIdentity() { boolean ret = true; ret = ret && idHasBeenSet; return ret; } /** * * @deprecated use {@link #equals} */ public boolean isIdentical(Object other) { if (other instanceof BnRoleValue) { BnRoleValue that = (BnRoleValue) other; boolean lEquals = true; if( this.description == null ) { lEquals = lEquals && ( that.description == null ); } else { lEquals = lEquals && this.description.equals( that.description ); } if( this.name == null ) { lEquals = lEquals && ( that.name == null ); } else { lEquals = lEquals && this.name.equals( that.name ); } if( this.BnRoleMapper == null ) { lEquals = lEquals && ( that.BnRoleMapper == null ); } else { lEquals = lEquals && this.BnRoleMapper.equals( that.BnRoleMapper ); } return lEquals; } else { return false; } } public boolean equals(Object other) { //If it's not the correct type, clearly it isn't equal to this. if (!(other instanceof BnRoleValue)) { return false; } return equals((BnRoleValue) other); } /** * This class is not using strict ordering. This means that the object is not Comparable, and * each check for equality will test all members for equality. We do not check collections for * equality however, so you would be wise to not use this if you have collection typed EJB References. */ public boolean equals(BnRoleValue that) { //try to get lucky. if (this == that) { return true; } //this clearly isn't null. if(null == that) { return false; } if(this.id != that.id) { if( this.id == null || that.id == null ) { return false; } if(!this.id.equals(that.id)) { return false; } } if(this.description != that.description) { if( this.description == null || that.description == null ) { return false; } if(!this.description.equals(that.description)) { return false; } } if(this.name != that.name) { if( this.name == null || that.name == null ) { return false; } if(!this.name.equals(that.name)) { return false; } } if(this.BnRoleMapper != that.BnRoleMapper) { if((this.BnRoleMapper == null) || (that.BnRoleMapper == null)) { return false; } if(!this.BnRoleMapper.equals(that.BnRoleMapper)) { return false; } } return true; } public Object clone() throws java.lang.CloneNotSupportedException { BnRoleValue other = (BnRoleValue) super.clone(); return other; } public ReadOnlyBnRoleValue getReadOnlyBnRoleValue() { return new ReadOnlyBnRoleValue(); } public int hashCode(){ int result = 17; result = 37*result + ((this.id != null) ? this.id.hashCode() : 0); result = 37*result + ((this.description != null) ? this.description.hashCode() : 0); result = 37*result + ((this.name != null) ? this.name.hashCode() : 0); result = 37*result + ((this.BnRoleMapper != null) ? this.BnRoleMapper.hashCode() : 0); return result; } /** * Covariant function so the compiler can choose the proper one at compile time, * eliminates the need for XDoclet to really understand compiletime typing. * * Read only collections need to be synchronized. Once we start giving out handles * to these collections, they'll be used in other threads sooner or later. */ private static java.util.Collection wrapCollection(java.util.Collection input) { return java.util.Collections.synchronizedCollection(input); } /** * Covariant function so the compiler can choose the proper one at compile time, * eliminates the need for XDoclet to really understand compiletime typing. * * Read only collections need to be synchronized. Once we start giving out handles * to these collections, they'll be used in other threads sooner or later. */ private static java.util.Set wrapCollection(java.util.Set input) { return java.util.Collections.synchronizedSet(input); } /** * Covariant function. This is used in covariant form so that the compiler * can do some of our conditional branches for us. If I made these functions * have different names, then XDoclet would have to choose between them based on * compiletime types, that wouldn't be easy. */ private static java.util.Collection wrapReadOnly(java.util.Collection input) { return java.util.Collections.unmodifiableCollection(input); } /** * Covariant function. This is used in covariant form so that the compiler * can do some of our conditional branches for us. If I made these functions * have different names, then XDoclet would have to choose between them based on * compiletime types, that wouldn't be easy. */ private static java.util.Set wrapReadOnly(java.util.Set input) { return java.util.Collections.unmodifiableSet(input); } private final class ReadOnlyBnRoleValue implements java.lang.Cloneable, java.io.Serializable { private BnRoleValue underlying() { return BnRoleValue.this; } public java.lang.String getId() { return underlying().id; } public java.lang.String getDescription() { return underlying().description; } public java.lang.String getName() { return underlying().name; } public hero.interfaces.BnRoleMapperValue getBnRoleMapper() { return underlying().BnRoleMapper; } public int hashCode() { return 101 * underlying().hashCode(); } public boolean equals(Object o) { if(o instanceof ReadOnlyBnRoleValue) { return this.equals((ReadOnlyBnRoleValue) o); } return false; } public boolean equals(ReadOnlyBnRoleValue that) { if(null == that) { return false; } return this.underlying().equals(that.underlying()); } } }