maia/.svn/pristine/b5/b5b2d5b27a987985c67c426cae6...

125 lines
3.2 KiB
Plaintext
Executable File

package com.fp.persistence.pbpm.gene;
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 TBPMFLOWS*/
@Embeddable
public class TbpmFlowsKey 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="FLOWCODE", nullable=false,updatable=false)
/**
* Codigo de flujo
*/
private String flowcode;
@Column(name="COMPANYCODE", nullable=false,updatable=false)
/**
* Codigo de compania
*/
private Integer companycode;
/**Contructor por defecto*/
public TbpmFlowsKey(){}
/**Contructor de TbpmFlowsKey
@param pFlowcode Codigo de flujo
@param pCompanycode Codigo de compania
*/
public TbpmFlowsKey(String pFlowcode,Integer pCompanycode){
flowcode=pFlowcode;
companycode=pCompanycode;
}
/**Obtiene el valor de flowcode
@return valor de flowcode*/
public String getFlowcode(){
return flowcode;
}
/**Fija el valor de flowcode
@param pFlowcode nuevo Valor de flowcode*/
public void setFlowcode(String pFlowcode){
flowcode=pFlowcode;
}
/**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;
}
/**Implementación de la comparación de TbpmFlowsKey
@param o Objeto de comparación
*/
public boolean equals(Object o){
if (o == null)return false;
if (! (o instanceof TbpmFlowsKey))return false;
TbpmFlowsKey that = (TbpmFlowsKey) o;
if (this.getFlowcode() == null || that.getFlowcode() == null){
return false;
}
if (! this.getFlowcode().equals(that.getFlowcode())){
return false;
}
if (this.getCompanycode() == null || that.getCompanycode() == null){
return false;
}
if (! this.getCompanycode().equals(that.getCompanycode())){
return false;
}
return true;
}
/**Implementación del método hashCode bajo el patrón de Bloch
@return hashCode de la instancia TbpmFlowsKey
*/
public int hashCode(){
if (this.hashValue == 0){
int result = 17;
result = result * 37 + (this.getFlowcode() == null ? 0 : this.getFlowcode().hashCode());
result = result * 37 + (this.getCompanycode() == null ? 0 : this.getCompanycode().hashCode());
this.hashValue = result;
}
return this.hashValue;
}
public Object cloneMe() throws CloneNotSupportedException {
return this.clone();
}
/**Implementació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;
}
}