maia/.svn/pristine/d2/d26446fb12942a080a5fe99868d...

179 lines
5.8 KiB
Plaintext
Executable File
Raw Permalink Blame History

package com.fp.persistence.pgeneral.charge;
import javax.persistence.Column;
import java.io.Serializable;
import com.fp.dto.hb.HibernateId;
import java.lang.reflect.Field;
import javax.persistence.Embeddable;
import javax.persistence.Transient;
/**Clase que hace referencia a la Clave Primaria de TGENECHARGESCHECKBOOK*/
@Embeddable
public class TgeneChargesCheckbookKey extends com.fp.dto.AbstractDataTransport implements Serializable,Cloneable,HibernateId{
/**
* HashCode asociado con la Instancia
*/
@Transient
private int hashValue = 0;
/**
* Version de la Clase
*/
private static final long serialVersionUID = 1L;
@Column(name="CHECKBOOKTYPECATALOG", nullable=false,updatable=false)
/**
* Codigo de catalogo ejemlo con talon de 50 cheques.
*/
private String checkbooktypecatalog;
@Column(name="CHECKBOOKTYPECATALOGCODE", nullable=false,updatable=false)
/**
* Codigo de tabla de catalogo de tipo de chequeras CHECKBOOKTYPE
*/
private String checkbooktypecatalogcode;
@Column(name="COMPANYCODE", nullable=false,updatable=false)
/**
* Codigo de compania
*/
private Integer companycode;
@Column(name="CURRENCYCODE", nullable=false,updatable=false)
/**
* Codigo de moneda de la cuenta, asociada a la chequera.
*/
private String currencycode;
/**Contructor por defecto*/
public TgeneChargesCheckbookKey(){}
/**Contructor de TgeneChargesCheckbookKey
@param pCheckbooktypecatalog Codigo de catalogo ejemlo con talon de 50 cheques.
@param pCheckbooktypecatalogcode Codigo de tabla de catalogo de tipo de chequeras CHECKBOOKTYPE
@param pCompanycode Codigo de compania
@param pCurrencycode Codigo de moneda de la cuenta, asociada a la chequera.
*/
public TgeneChargesCheckbookKey(String pCheckbooktypecatalog,String pCheckbooktypecatalogcode,Integer pCompanycode,String pCurrencycode){
checkbooktypecatalog=pCheckbooktypecatalog;
checkbooktypecatalogcode=pCheckbooktypecatalogcode;
companycode=pCompanycode;
currencycode=pCurrencycode;
}
/**Obtiene el valor de checkbooktypecatalog
@return valor de checkbooktypecatalog*/
public String getCheckbooktypecatalog(){
return checkbooktypecatalog;
}
/**Fija el valor de checkbooktypecatalog
@param pCheckbooktypecatalog nuevo Valor de checkbooktypecatalog*/
public void setCheckbooktypecatalog(String pCheckbooktypecatalog){
checkbooktypecatalog=pCheckbooktypecatalog;
}
/**Obtiene el valor de checkbooktypecatalogcode
@return valor de checkbooktypecatalogcode*/
public String getCheckbooktypecatalogcode(){
return checkbooktypecatalogcode;
}
/**Fija el valor de checkbooktypecatalogcode
@param pCheckbooktypecatalogcode nuevo Valor de checkbooktypecatalogcode*/
public void setCheckbooktypecatalogcode(String pCheckbooktypecatalogcode){
checkbooktypecatalogcode=pCheckbooktypecatalogcode;
}
/**Obtiene el valor de companycode
@return valor de companycode*/
public Integer getCompanycode(){
return companycode;
}
/**Fija el valor de companycode
@param pCompanycode nuevo Valor de companycode*/
public void setCompanycode(Integer pCompanycode){
companycode=pCompanycode;
}
/**Obtiene el valor de currencycode
@return valor de currencycode*/
public String getCurrencycode(){
return currencycode;
}
/**Fija el valor de currencycode
@param pCurrencycode nuevo Valor de currencycode*/
public void setCurrencycode(String pCurrencycode){
currencycode=pCurrencycode;
}
/**Implementaci<63>n de la comparaci<63>n de TgeneChargesCheckbookKey
@param o Objeto de comparaci<63>n
*/
public boolean equals(Object o){
if (o == null)return false;
if (! (o instanceof TgeneChargesCheckbookKey))return false;
TgeneChargesCheckbookKey that = (TgeneChargesCheckbookKey) o;
if (this.getCheckbooktypecatalog() == null || that.getCheckbooktypecatalog() == null){
return false;
}
if (! this.getCheckbooktypecatalog().equals(that.getCheckbooktypecatalog())){
return false;
}
if (this.getCheckbooktypecatalogcode() == null || that.getCheckbooktypecatalogcode() == null){
return false;
}
if (! this.getCheckbooktypecatalogcode().equals(that.getCheckbooktypecatalogcode())){
return false;
}
if (this.getCompanycode() == null || that.getCompanycode() == null){
return false;
}
if (! this.getCompanycode().equals(that.getCompanycode())){
return false;
}
if (this.getCurrencycode() == null || that.getCurrencycode() == null){
return false;
}
if (! this.getCurrencycode().equals(that.getCurrencycode())){
return false;
}
return true;
}
/**Implementaci<63>n del m<>todo hashCode bajo el patr<74>n de Bloch
@return hashCode de la instancia TgeneChargesCheckbookKey
*/
public int hashCode(){
if (this.hashValue == 0){
int result = 17;
result = result * 37 + (this.getCheckbooktypecatalog() == null ? 0 : this.getCheckbooktypecatalog().hashCode());
result = result * 37 + (this.getCheckbooktypecatalogcode() == null ? 0 : this.getCheckbooktypecatalogcode().hashCode());
result = result * 37 + (this.getCompanycode() == null ? 0 : this.getCompanycode().hashCode());
result = result * 37 + (this.getCurrencycode() == null ? 0 : this.getCurrencycode().hashCode());
this.hashValue = result;
}
return this.hashValue;
}
public Object cloneMe() throws CloneNotSupportedException {
return this.clone();
}
/**Implementaci<63>n toString
*/
public String toString() {
Field[]fs=this.getClass().getDeclaredFields();
String data="";
for(Field f:fs){
try{
String name=f.getName();
if(f.getType().getName().compareTo("java.util.Set")==0)continue;
if(name.compareTo("hashValue")==0||name.compareTo("serialVersionUID")==0)continue;
data+="pk."+name+"="+f.get(this)+";";
}catch(Exception e){
continue;
}
}
if(data.compareTo("")==0){
data=super.toString();
}
return data;
}
}