1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
|
package testPackage;
import javax.ejb.*;
/**
* This is the bean class for the MicroMarketsTblBean enterprise bean.
* Created Kdysi
* @author Kdosi
*/
public abstract class MicroMarketsTblBean implements javax.ejb.EntityBean, testPackage.MicroMarketsTblLocalBusiness {
private javax.ejb.EntityContext context;
// <editor-fold defaultstate="collapsed" desc="EJB infrastructure methods. Click on the + sign on the left to edit the code.">
// TODO Consider creating Transfer Object to encapsulate data
// TODO Review finder methods
/**
* @see javax.ejb.EntityBean#setEntityContext(javax.ejb.EntityContext)
*/
public void setEntityContext(javax.ejb.EntityContext aContext) {
context = aContext;
}
/**
* @see javax.ejb.EntityBean#ejbActivate()
*/
public void ejbActivate() {
}
/**
* @see javax.ejb.EntityBean#ejbPassivate()
*/
public void ejbPassivate() {
}
/**
* @see javax.ejb.EntityBean#ejbRemove()
*/
public void ejbRemove() {
}
/**
* @see javax.ejb.EntityBean#unsetEntityContext()
*/
public void unsetEntityContext() {
context = null;
}
/**
* @see javax.ejb.EntityBean#ejbLoad()
*/
public void ejbLoad() {
}
/**
* @see javax.ejb.EntityBean#ejbStore()
*/
public void ejbStore() {
}
// </editor-fold>
public abstract java.lang.String getZipCode();
public abstract void setZipCode(java.lang.String zipCode);
public abstract java.lang.Double getRadius();
public abstract void setRadius(java.lang.Double radius);
public abstract java.lang.Double getAreaLength();
public abstract void setAreaLength(java.lang.Double areaLength);
public abstract java.lang.Double getAreaWidth();
public abstract void setAreaWidth(java.lang.Double areaWidth);
public abstract java.util.Collection getCustomerTblBean();
public abstract void setCustomerTblBean(java.util.Collection customerTblBean);
public java.lang.String ejbCreate(java.lang.String zipCode, java.lang.Double radius, java.lang.Double areaLength, java.lang.Double areaWidth) throws javax.ejb.CreateException {
if (zipCode == null) {
throw new javax.ejb.CreateException("The field \"zipCode\" must not be null");
}
// TODO add additional validation code, throw CreateException if data is not valid
setZipCode(zipCode);
setRadius(radius);
setAreaLength(areaLength);
setAreaWidth(areaWidth);
return null;
}
public void ejbPostCreate(java.lang.String zipCode, java.lang.Double radius, java.lang.Double areaLength, java.lang.Double areaWidth) {
// TODO populate relationships here if appropriate
}
}
|