maia_modificado/.svn/pristine/45/454717aea8cc434346e533c029a...

152 lines
4.0 KiB
Plaintext
Executable File

package com.fp.persistence.parmas.soli;
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 TARMSOLICITUDARMAS*/
@Embeddable
public class TarmSolicitudArmasKey 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="CSOLICITUD", nullable=false,updatable=false)
/**
* Codigo de solicitud de controld e armas
*/
private String csolicitud;
@Column(name="PERSONCODE", nullable=false,updatable=false)
/**
* Codigo de persona
*/
private Integer personcode;
@Column(name="CARMA", nullable=false,updatable=false)
/**
* null
*/
private String carma;
/**Contructor por defecto*/
public TarmSolicitudArmasKey(){}
/**Contructor de TarmSolicitudArmasKey
@param pCsolicitud Codigo de solicitud de controld e armas
@param pPersoncode Codigo de persona
@param pCarma null
*/
public TarmSolicitudArmasKey(String pCsolicitud,Integer pPersoncode,String pCarma){
csolicitud=pCsolicitud;
personcode=pPersoncode;
carma=pCarma;
}
/**Obtiene el valor de csolicitud
@return valor de csolicitud*/
public String getCsolicitud(){
return csolicitud;
}
/**Fija el valor de csolicitud
@param pCsolicitud nuevo Valor de csolicitud*/
public void setCsolicitud(String pCsolicitud){
csolicitud=pCsolicitud;
}
/**Obtiene el valor de personcode
@return valor de personcode*/
public Integer getPersoncode(){
return personcode;
}
/**Fija el valor de personcode
@param pPersoncode nuevo Valor de personcode*/
public void setPersoncode(Integer pPersoncode){
personcode=pPersoncode;
}
/**Obtiene el valor de carma
@return valor de carma*/
public String getCarma(){
return carma;
}
/**Fija el valor de carma
@param pCarma nuevo Valor de carma*/
public void setCarma(String pCarma){
carma=pCarma;
}
/**Implementacion de la comparacion de TarmSolicitudArmasKey
@param o Objeto de comparacion
*/
public boolean equals(Object o){
if (o == null)return false;
if (! (o instanceof TarmSolicitudArmasKey))return false;
TarmSolicitudArmasKey that = (TarmSolicitudArmasKey) o;
if (this.getCsolicitud() == null || that.getCsolicitud() == null){
return false;
}
if (! this.getCsolicitud().equals(that.getCsolicitud())){
return false;
}
if (this.getPersoncode() == null || that.getPersoncode() == null){
return false;
}
if (! this.getPersoncode().equals(that.getPersoncode())){
return false;
}
if (this.getCarma() == null || that.getCarma() == null){
return false;
}
if (! this.getCarma().equals(that.getCarma())){
return false;
}
return true;
}
/**Implementacion del metodo hashCode bajo el patron de Bloch
@return hashCode de la instancia TarmSolicitudArmasKey
*/
public int hashCode(){
if (this.hashValue == 0){
int result = 17;
result = result * 37 + (this.getCsolicitud() == null ? 0 : this.getCsolicitud().hashCode());
result = result * 37 + (this.getPersoncode() == null ? 0 : this.getPersoncode().hashCode());
result = result * 37 + (this.getCarma() == null ? 0 : this.getCarma().hashCode());
this.hashValue = result;
}
return this.hashValue;
}
public Object cloneMe() throws CloneNotSupportedException {
return this.clone();
}
/**Implementacion 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;
}
}