package nl.netwerkvsp.server.service2000.ejb.entity.relatiebeheer; /** * This class is a CMP EJB accessing the T_RELATIE table. * * Generated by Middlegen * * * @ejb.bean * type="CMP" * cmp-version="2.x" * name="TRelatie" * local-jndi-name="service2000/TRelatieLocalHome" * view-type="both" * primkey-field="relatie" * * @ejb.value-object * name="TRelatie" * match="*" * * @ejb.finder * signature="java.util.Collection findAll()" * result-type-mapping="Local" * method-intf="LocalHome" * query="SELECT OBJECT(o) FROM TRelatie o" * * @ejb.finder * signature="java.util.Collection findByTypeAccount(java.lang.Byte typeAccount)" * result-type-mapping="Local" * method-intf="LocalHome" * query="SELECT DISTINCT OBJECT(o) FROM TRelatie o WHERE o.typeAccount = ?1" * description="TYPE_ACCOUNT is not indexed." * * @ejb.finder * signature="java.util.Collection findByZipName(java.lang.String zip, java.lang.String name)" * result-type-mapping="Local" * method-intf="LocalHome" * query="SELECT DISTINCT OBJECT(o) FROM TRelatie o WHERE o.postcode6 LIKE ?1 AND o.naam LIKE ?2" * description="Relatie by Zip code and or name" * * @ejb.persistence table-name="IN_RELATIEBEHEER_OWNER.T_RELATIE" * @ejb.transaction type="Required" * * @ejb.ejb-ref * ejb-name="SequenceSession" * ref-name="ejb/SequenceSession" * view-type="local" * */ public abstract class TRelatieBean implements javax.ejb.EntityBean { /** * Returns the relatie * @todo support OracleClob,OracleBlob on WLS * * @return the relatie * * @ejb.pk-field * @ejb.interface-method view-type="both" * @ejb.value-object match="large" * @ejb.persistent-field * @ejb.persistence column-name="RELATIE" */ public abstract java.lang.String getRelatie(); /** * Sets the relatie * * @param relatie the new relatie value */ public abstract void setRelatie(java.lang.String relatie); /** * Returns the aanhef * @todo support OracleClob,OracleBlob on WLS * * @return the aanhef * * @ejb.interface-method view-type="both" * @ejb.value-object match="large" * @ejb.persistent-field * @ejb.persistence column-name="AANHEF" */ public abstract java.lang.String getAanhef(); /** * Sets the aanhef * * @param aanhef the new aanhef value * @ejb.interface-method view-type="both" */ public abstract void setAanhef(java.lang.String aanhef); /** * Returns the naam * @todo support OracleClob,OracleBlob on WLS * * @return the naam * * @ejb.interface-method view-type="both" * @ejb.value-object match="large" * @ejb.persistent-field * @ejb.persistence column-name="NAAM" */ public abstract java.lang.String getNaam(); /** * Sets the naam * * @param naam the new naam value * @ejb.interface-method view-type="both" */ public abstract void setNaam(java.lang.String naam); /** * Returns the straatnaam * @todo support OracleClob,OracleBlob on WLS * * @return the straatnaam * * @ejb.interface-method view-type="both" * @ejb.value-object match="large" * @ejb.persistent-field * @ejb.persistence column-name="STRAATNAAM" */ public abstract java.lang.String getStraatnaam(); /** * Sets the straatnaam * * @param straatnaam the new straatnaam value * @ejb.interface-method view-type="both" */ public abstract void setStraatnaam(java.lang.String straatnaam); /** * Returns the huisnummer * @todo support OracleClob,OracleBlob on WLS * * @return the huisnummer * * @ejb.interface-method view-type="both" * @ejb.value-object match="large" * @ejb.persistent-field * @ejb.persistence column-name="HUISNUMMER" */ public abstract int getHuisnummer(); /** * Sets the huisnummer * * @param huisnummer the new huisnummer value * @ejb.interface-method view-type="both" */ public abstract void setHuisnummer(int huisnummer); /** * Returns the huisnummerAppendix * @todo support OracleClob,OracleBlob on WLS * * @return the huisnummerAppendix * * @ejb.interface-method view-type="both" * @ejb.value-object match="large" * @ejb.persistent-field * @ejb.persistence column-name="HUISNUMMER_APPENDIX" */ public abstract java.lang.String getHuisnummerAppendix(); /** * Sets the huisnummerAppendix * * @param huisnummerAppendix the new huisnummerAppendix value * @ejb.interface-method view-type="both" */ public abstract void setHuisnummerAppendix(java.lang.String huisnummerAppendix); /** * Returns the postcode6 * @todo support OracleClob,OracleBlob on WLS * * @return the postcode6 * * @ejb.interface-method view-type="both" * @ejb.value-object match="large" * @ejb.persistent-field * @ejb.persistence column-name="POSTCODE6" */ public abstract java.lang.String getPostcode6(); /** * Sets the postcode6 * * @param postcode6 the new postcode6 value * @ejb.interface-method view-type="both" */ public abstract void setPostcode6(java.lang.String postcode6); /** * Returns the plaatsnaam * @todo support OracleClob,OracleBlob on WLS * * @return the plaatsnaam * * @ejb.interface-method view-type="both" * @ejb.value-object match="large" * @ejb.persistent-field * @ejb.persistence column-name="PLAATSNAAM" */ public abstract java.lang.String getPlaatsnaam(); /** * Sets the plaatsnaam * * @param plaatsnaam the new plaatsnaam value * @ejb.interface-method view-type="both" */ public abstract void setPlaatsnaam(java.lang.String plaatsnaam); /** * Returns the landcode * @todo support OracleClob,OracleBlob on WLS * * @return the landcode * * @ejb.interface-method view-type="both" * @ejb.value-object match="large" * @ejb.persistent-field * @ejb.persistence column-name="LANDCODE" */ public abstract java.lang.String getLandcode(); /** * Sets the landcode * * @param landcode the new landcode value * @ejb.interface-method view-type="both" */ public abstract void setLandcode(java.lang.String landcode); /** * Returns the postStraatnaam * @todo support OracleClob,OracleBlob on WLS * * @return the postStraatnaam * * @ejb.interface-method view-type="both" * @ejb.value-object match="large" * @ejb.persistent-field * @ejb.persistence column-name="POST_STRAATNAAM" */ public abstract java.lang.String getPostStraatnaam(); /** * Sets the postStraatnaam * * @param postStraatnaam the new postStraatnaam value * @ejb.interface-method view-type="both" */ public abstract void setPostStraatnaam(java.lang.String postStraatnaam); /** * Returns the postHuisnummer * @todo support OracleClob,OracleBlob on WLS * * @return the postHuisnummer * * @ejb.interface-method view-type="both" * @ejb.value-object match="large" * @ejb.persistent-field * @ejb.persistence column-name="POST_HUISNUMMER" */ public abstract int getPostHuisnummer(); /** * Sets the postHuisnummer * * @param postHuisnummer the new postHuisnummer value * @ejb.interface-method view-type="both" */ public abstract void setPostHuisnummer(int postHuisnummer); /** * Returns the postHuisnummerAppendix * @todo support OracleClob,OracleBlob on WLS * * @return the postHuisnummerAppendix * * @ejb.interface-method view-type="both" * @ejb.value-object match="large" * @ejb.persistent-field * @ejb.persistence column-name="POST_HUISNUMMER_APPENDIX" */ public abstract java.lang.String getPostHuisnummerAppendix(); /** * Sets the postHuisnummerAppendix * * @param postHuisnummerAppendix the new postHuisnummerAppendix value * @ejb.interface-method view-type="both" */ public abstract void setPostHuisnummerAppendix(java.lang.String postHuisnummerAppendix); /** * Returns the postPostcode6 * @todo support OracleClob,OracleBlob on WLS * * @return the postPostcode6 * * @ejb.interface-method view-type="both" * @ejb.value-object match="large" * @ejb.persistent-field * @ejb.persistence column-name="POST_POSTCODE6" */ public abstract java.lang.String getPostPostcode6(); /** * Sets the postPostcode6 * * @param postPostcode6 the new postPostcode6 value * @ejb.interface-method view-type="both" */ public abstract void setPostPostcode6(java.lang.String postPostcode6); /** * Returns the postPlaatsnaam * @todo support OracleClob,OracleBlob on WLS * * @return the postPlaatsnaam * * @ejb.interface-method view-type="both" * @ejb.value-object match="large" * @ejb.persistent-field * @ejb.persistence column-name="POST_PLAATSNAAM" */ public abstract java.lang.String getPostPlaatsnaam(); /** * Sets the postPlaatsnaam * * @param postPlaatsnaam the new postPlaatsnaam value * @ejb.interface-method view-type="both" */ public abstract void setPostPlaatsnaam(java.lang.String postPlaatsnaam); /** * Returns the postLandcode * @todo support OracleClob,OracleBlob on WLS * * @return the postLandcode * * @ejb.interface-method view-type="both" * @ejb.value-object match="large" * @ejb.persistent-field * @ejb.persistence column-name="POST_LANDCODE" */ public abstract java.lang.String getPostLandcode(); /** * Sets the postLandcode * * @param postLandcode the new postLandcode value * @ejb.interface-method view-type="both" */ public abstract void setPostLandcode(java.lang.String postLandcode); /** * Returns the telNetnummer * @todo support OracleClob,OracleBlob on WLS * * @return the telNetnummer * * @ejb.interface-method view-type="both" * @ejb.value-object match="large" * @ejb.persistent-field * @ejb.persistence column-name="TEL_NETNUMMER" */ public abstract java.lang.String getTelNetnummer(); /** * Sets the telNetnummer * * @param telNetnummer the new telNetnummer value * @ejb.interface-method view-type="both" */ public abstract void setTelNetnummer(java.lang.String telNetnummer); /** * Returns the telAbonneenummer * @todo support OracleClob,OracleBlob on WLS * * @return the telAbonneenummer * * @ejb.interface-method view-type="both" * @ejb.value-object match="large" * @ejb.persistent-field * @ejb.persistence column-name="TEL_ABONNEENUMMER" */ public abstract java.lang.String getTelAbonneenummer(); /** * Sets the telAbonneenummer * * @param telAbonneenummer the new telAbonneenummer value * @ejb.interface-method view-type="both" */ public abstract void setTelAbonneenummer(java.lang.String telAbonneenummer); /** * Returns the gsmNetnummer * @todo support OracleClob,OracleBlob on WLS * * @return the gsmNetnummer * * @ejb.interface-method view-type="both" * @ejb.value-object match="large" * @ejb.persistent-field * @ejb.persistence column-name="GSM_NETNUMMER" */ public abstract java.lang.String getGsmNetnummer(); /** * Sets the gsmNetnummer * * @param gsmNetnummer the new gsmNetnummer value * @ejb.interface-method view-type="both" */ public abstract void setGsmNetnummer(java.lang.String gsmNetnummer); /** * Returns the gsmAbonneenummer * @todo support OracleClob,OracleBlob on WLS * * @return the gsmAbonneenummer * * @ejb.interface-method view-type="both" * @ejb.value-object match="large" * @ejb.persistent-field * @ejb.persistence column-name="GSM_ABONNEENUMMER" */ public abstract java.lang.String getGsmAbonneenummer(); /** * Sets the gsmAbonneenummer * * @param gsmAbonneenummer the new gsmAbonneenummer value * @ejb.interface-method view-type="both" */ public abstract void setGsmAbonneenummer(java.lang.String gsmAbonneenummer); /** * Returns the faxNetnummer * @todo support OracleClob,OracleBlob on WLS * * @return the faxNetnummer * * @ejb.interface-method view-type="both" * @ejb.value-object match="large" * @ejb.persistent-field * @ejb.persistence column-name="FAX_NETNUMMER" */ public abstract java.lang.String getFaxNetnummer(); /** * Sets the faxNetnummer * * @param faxNetnummer the new faxNetnummer value * @ejb.interface-method view-type="both" */ public abstract void setFaxNetnummer(java.lang.String faxNetnummer); /** * Returns the faxAbonneenummer * @todo support OracleClob,OracleBlob on WLS * * @return the faxAbonneenummer * * @ejb.interface-method view-type="both" * @ejb.value-object match="large" * @ejb.persistent-field * @ejb.persistence column-name="FAX_ABONNEENUMMER" */ public abstract java.lang.String getFaxAbonneenummer(); /** * Sets the faxAbonneenummer * * @param faxAbonneenummer the new faxAbonneenummer value * @ejb.interface-method view-type="both" */ public abstract void setFaxAbonneenummer(java.lang.String faxAbonneenummer); /** * Returns the eMail * @todo support OracleClob,OracleBlob on WLS * * @return the eMail * * @ejb.interface-method view-type="both" * @ejb.value-object match="large" * @ejb.persistent-field * @ejb.persistence column-name="E_MAIL" */ public abstract java.lang.String getEMail(); /** * Sets the eMail * * @param eMail the new eMail value * @ejb.interface-method view-type="both" */ public abstract void setEMail(java.lang.String eMail); /** * Returns the website * @todo support OracleClob,OracleBlob on WLS * * @return the website * * @ejb.interface-method view-type="both" * @ejb.value-object match="large" * @ejb.persistent-field * @ejb.persistence column-name="WEBSITE" */ public abstract java.lang.String getWebsite(); /** * Sets the website * * @param website the new website value * @ejb.interface-method view-type="both" */ public abstract void setWebsite(java.lang.String website); /** * Returns the relatieType1 * @todo support OracleClob,OracleBlob on WLS * * @return the relatieType1 * * @ejb.interface-method view-type="both" * @ejb.value-object match="large" * @ejb.persistent-field * @ejb.persistence column-name="RELATIE_TYPE_1" */ public abstract byte getRelatieType1(); /** * Sets the relatieType1 * * @param relatieType1 the new relatieType1 value * @ejb.interface-method view-type="both" */ public abstract void setRelatieType1(byte relatieType1); /** * Returns the relatieType2 * @todo support OracleClob,OracleBlob on WLS * * @return the relatieType2 * * @ejb.interface-method view-type="both" * @ejb.value-object match="large" * @ejb.persistent-field * @ejb.persistence column-name="RELATIE_TYPE_2" */ public abstract byte getRelatieType2(); /** * Sets the relatieType2 * * @param relatieType2 the new relatieType2 value * @ejb.interface-method view-type="both" */ public abstract void setRelatieType2(byte relatieType2); /** * Returns the relatieType3 * @todo support OracleClob,OracleBlob on WLS * * @return the relatieType3 * * @ejb.interface-method view-type="both" * @ejb.value-object match="large" * @ejb.persistent-field * @ejb.persistence column-name="RELATIE_TYPE_3" */ public abstract byte getRelatieType3(); /** * Sets the relatieType3 * * @param relatieType3 the new relatieType3 value * @ejb.interface-method view-type="both" */ public abstract void setRelatieType3(byte relatieType3); /** * Returns the relatieType4 * @todo support OracleClob,OracleBlob on WLS * * @return the relatieType4 * * @ejb.interface-method view-type="both" * @ejb.value-object match="large" * @ejb.persistent-field * @ejb.persistence column-name="RELATIE_TYPE_4" */ public abstract byte getRelatieType4(); /** * Sets the relatieType4 * * @param relatieType4 the new relatieType4 value * @ejb.interface-method view-type="both" */ public abstract void setRelatieType4(byte relatieType4); /** * Returns the relatieType5 * @todo support OracleClob,OracleBlob on WLS * * @return the relatieType5 * * @ejb.interface-method view-type="both" * @ejb.value-object match="large" * @ejb.persistent-field * @ejb.persistence column-name="RELATIE_TYPE_5" */ public abstract byte getRelatieType5(); /** * Sets the relatieType5 * * @param relatieType5 the new relatieType5 value * @ejb.interface-method view-type="both" */ public abstract void setRelatieType5(byte relatieType5); /** * Returns the relatieType6 * @todo support OracleClob,OracleBlob on WLS * * @return the relatieType6 * * @ejb.interface-method view-type="both" * @ejb.value-object match="large" * @ejb.persistent-field * @ejb.persistence column-name="RELATIE_TYPE_6" */ public abstract byte getRelatieType6(); /** * Sets the relatieType6 * * @param relatieType6 the new relatieType6 value * @ejb.interface-method view-type="both" */ public abstract void setRelatieType6(byte relatieType6); /** * Returns the relatieType7 * @todo support OracleClob,OracleBlob on WLS * * @return the relatieType7 * * @ejb.interface-method view-type="both" * @ejb.value-object match="large" * @ejb.persistent-field * @ejb.persistence column-name="RELATIE_TYPE_7" */ public abstract byte getRelatieType7(); /** * Sets the relatieType7 * * @param relatieType7 the new relatieType7 value * @ejb.interface-method view-type="both" */ public abstract void setRelatieType7(byte relatieType7); /** * Returns the relatieType8 * @todo support OracleClob,OracleBlob on WLS * * @return the relatieType8 * * @ejb.interface-method view-type="both" * @ejb.value-object match="large" * @ejb.persistent-field * @ejb.persistence column-name="RELATIE_TYPE_8" */ public abstract byte getRelatieType8(); /** * Sets the relatieType8 * * @param relatieType8 the new relatieType8 value * @ejb.interface-method view-type="both" */ public abstract void setRelatieType8(byte relatieType8); /** * Returns the relatieType9 * @todo support OracleClob,OracleBlob on WLS * * @return the relatieType9 * * @ejb.interface-method view-type="both" * @ejb.value-object match="large" * @ejb.persistent-field * @ejb.persistence column-name="RELATIE_TYPE_9" */ public abstract byte getRelatieType9(); /** * Sets the relatieType9 * * @param relatieType9 the new relatieType9 value * @ejb.interface-method view-type="both" */ public abstract void setRelatieType9(byte relatieType9); /** * Returns the relatieType10 * @todo support OracleClob,OracleBlob on WLS * * @return the relatieType10 * * @ejb.interface-method view-type="both" * @ejb.value-object match="large" * @ejb.persistent-field * @ejb.persistence column-name="RELATIE_TYPE_10" */ public abstract byte getRelatieType10(); /** * Sets the relatieType10 * * @param relatieType10 the new relatieType10 value * @ejb.interface-method view-type="both" */ public abstract void setRelatieType10(byte relatieType10); /** * Returns the standaardkorting * @todo support OracleClob,OracleBlob on WLS * * @return the standaardkorting * * @ejb.interface-method view-type="both" * @ejb.value-object match="large" * @ejb.persistent-field * @ejb.persistence column-name="STANDAARDKORTING" */ public abstract java.math.BigDecimal getStandaardkorting(); /** * Sets the standaardkorting * * @param standaardkorting the new standaardkorting value * @ejb.interface-method view-type="both" */ public abstract void setStandaardkorting(java.math.BigDecimal standaardkorting); /** * Returns the standaardDuizendprijs * @todo support OracleClob,OracleBlob on WLS * * @return the standaardDuizendprijs * * @ejb.interface-method view-type="both" * @ejb.value-object match="large" * @ejb.persistent-field * @ejb.persistence column-name="STANDAARD_DUIZENDPRIJS" */ public abstract java.math.BigDecimal getStandaardDuizendprijs(); /** * Sets the standaardDuizendprijs * * @param standaardDuizendprijs the new standaardDuizendprijs value * @ejb.interface-method view-type="both" */ public abstract void setStandaardDuizendprijs(java.math.BigDecimal standaardDuizendprijs); /** * Returns the afwRelatieOpdrbev * @todo support OracleClob,OracleBlob on WLS * * @return the afwRelatieOpdrbev * * @ejb.interface-method view-type="both" * @ejb.value-object match="large" * @ejb.persistent-field * @ejb.persistence column-name="AFW_RELATIE_OPDRBEV" */ public abstract java.lang.String getAfwRelatieOpdrbev(); /** * Sets the afwRelatieOpdrbev * * @param afwRelatieOpdrbev the new afwRelatieOpdrbev value * @ejb.interface-method view-type="both" */ public abstract void setAfwRelatieOpdrbev(java.lang.String afwRelatieOpdrbev); /** * Returns the afwRelatieKopieOpdrbev * @todo support OracleClob,OracleBlob on WLS * * @return the afwRelatieKopieOpdrbev * * @ejb.interface-method view-type="both" * @ejb.value-object match="large" * @ejb.persistent-field * @ejb.persistence column-name="AFW_RELATIE_KOPIE_OPDRBEV" */ public abstract java.lang.String getAfwRelatieKopieOpdrbev(); /** * Sets the afwRelatieKopieOpdrbev * * @param afwRelatieKopieOpdrbev the new afwRelatieKopieOpdrbev value * @ejb.interface-method view-type="both" */ public abstract void setAfwRelatieKopieOpdrbev(java.lang.String afwRelatieKopieOpdrbev); /** * Returns the afwRelatieFaktuur * @todo support OracleClob,OracleBlob on WLS * * @return the afwRelatieFaktuur * * @ejb.interface-method view-type="both" * @ejb.value-object match="large" * @ejb.persistent-field * @ejb.persistence column-name="AFW_RELATIE_FAKTUUR" */ public abstract java.lang.String getAfwRelatieFaktuur(); /** * Sets the afwRelatieFaktuur * * @param afwRelatieFaktuur the new afwRelatieFaktuur value * @ejb.interface-method view-type="both" */ public abstract void setAfwRelatieFaktuur(java.lang.String afwRelatieFaktuur); /** * Returns the afwRelatieKopieFaktuur * @todo support OracleClob,OracleBlob on WLS * * @return the afwRelatieKopieFaktuur * * @ejb.interface-method view-type="both" * @ejb.value-object match="large" * @ejb.persistent-field * @ejb.persistence column-name="AFW_RELATIE_KOPIE_FAKTUUR" */ public abstract java.lang.String getAfwRelatieKopieFaktuur(); /** * Sets the afwRelatieKopieFaktuur * * @param afwRelatieKopieFaktuur the new afwRelatieKopieFaktuur value * @ejb.interface-method view-type="both" */ public abstract void setAfwRelatieKopieFaktuur(java.lang.String afwRelatieKopieFaktuur); /** * Returns the verkoperBinnendienst * @todo support OracleClob,OracleBlob on WLS * * @return the verkoperBinnendienst * * @ejb.interface-method view-type="both" * @ejb.value-object match="large" * @ejb.persistent-field * @ejb.persistence column-name="VERKOPER_BINNENDIENST" */ public abstract java.lang.String getVerkoperBinnendienst(); /** * Sets the verkoperBinnendienst * * @param verkoperBinnendienst the new verkoperBinnendienst value * @ejb.interface-method view-type="both" */ public abstract void setVerkoperBinnendienst(java.lang.String verkoperBinnendienst); /** * Returns the verkoperBuitendienst * @todo support OracleClob,OracleBlob on WLS * * @return the verkoperBuitendienst * * @ejb.interface-method view-type="both" * @ejb.value-object match="large" * @ejb.persistent-field * @ejb.persistence column-name="VERKOPER_BUITENDIENST" */ public abstract java.lang.String getVerkoperBuitendienst(); /** * Sets the verkoperBuitendienst * * @param verkoperBuitendienst the new verkoperBuitendienst value * @ejb.interface-method view-type="both" */ public abstract void setVerkoperBuitendienst(java.lang.String verkoperBuitendienst); /** * Returns the gewichtstoeslag * @todo support OracleClob,OracleBlob on WLS * * @return the gewichtstoeslag * * @ejb.interface-method view-type="both" * @ejb.value-object match="large" * @ejb.persistent-field * @ejb.persistence column-name="GEWICHTSTOESLAG" */ public abstract java.lang.String getGewichtstoeslag(); /** * Sets the gewichtstoeslag * * @param gewichtstoeslag the new gewichtstoeslag value * @ejb.interface-method view-type="both" */ public abstract void setGewichtstoeslag(java.lang.String gewichtstoeslag); /** * Returns the verwijzendeRelatie * @todo support OracleClob,OracleBlob on WLS * * @return the verwijzendeRelatie * * @ejb.interface-method view-type="both" * @ejb.value-object match="large" * @ejb.persistent-field * @ejb.persistence column-name="VERWIJZENDE_RELATIE" */ public abstract java.lang.String getVerwijzendeRelatie(); /** * Sets the verwijzendeRelatie * * @param verwijzendeRelatie the new verwijzendeRelatie value * @ejb.interface-method view-type="both" */ public abstract void setVerwijzendeRelatie(java.lang.String verwijzendeRelatie); /** * Returns the dossier * @todo support OracleClob,OracleBlob on WLS * * @return the dossier * * @ejb.interface-method view-type="both" * @ejb.value-object match="large" * @ejb.persistent-field * @ejb.persistence column-name="DOSSIER" */ public abstract java.lang.String getDossier(); /** * Sets the dossier * * @param dossier the new dossier value * @ejb.interface-method view-type="both" */ public abstract void setDossier(java.lang.String dossier); /** * Returns the perceel * @todo support OracleClob,OracleBlob on WLS * * @return the perceel * * @ejb.interface-method view-type="both" * @ejb.value-object match="large" * @ejb.persistent-field * @ejb.persistence column-name="PERCEEL" */ public abstract long getPerceel(); /** * Sets the perceel * * @param perceel the new perceel value * @ejb.interface-method view-type="both" */ public abstract void setPerceel(long perceel); /** * Returns the typeAccount * @todo support OracleClob,OracleBlob on WLS * * @return the typeAccount * * @ejb.interface-method view-type="remote" * @ejb.value-object match="large" * @ejb.persistent-field * @ejb.persistence column-name="TYPE_ACCOUNT" */ public abstract java.lang.Byte getTypeAccount(); /** * Sets the typeAccount * * @param typeAccount the new typeAccount value */ public abstract void setTypeAccount(java.lang.Byte typeAccount); /** * Returns the soortOnderzoek * @todo support OracleClob,OracleBlob on WLS * * @return the soortOnderzoek * * @ejb.interface-method view-type="both" * @ejb.value-object match="large" * @ejb.persistent-field * @ejb.persistence column-name="SOORT_ONDERZOEK" */ public abstract byte getSoortOnderzoek(); /** * Sets the soortOnderzoek * * @param soortOnderzoek the new soortOnderzoek value * @ejb.interface-method view-type="both" */ public abstract void setSoortOnderzoek(byte soortOnderzoek); //////////////////////// middlegen.RelationshipRole@16b5518 true /** * This is a bi-directional one-to-many relationship CMR method * * @return the related nl.netwerkvsp.server.service2000.ejb.entity.relatiebeheer.TTypeAccountLocal. * * @ejb.interface-method view-type="local" * * @ejb.relation * name="T_TYPE_ACCOUNT-cmp20-T_RELATIE-cmp20" * role-name="T_RELATIE-cmp20-has-T_TYPE_ACCOUNT-cmp20" * * @jboss.relation-mapping style="foreign-key" * * @weblogic.column-map * foreign-key-column="TYPE_ACCOUNT" * key-column="TYPE_ACCOUNT" * * @jboss.relation * fk-constraint="true" * fk-column="TYPE_ACCOUNT" * related-pk-field="typeAccount" * */ public abstract nl.netwerkvsp.server.service2000.ejb.entity.relatiebeheer.TTypeAccountLocal getTTypeAccount(); /** * Sets the related nl.netwerkvsp.server.service2000.ejb.entity.relatiebeheer.TTypeAccountLocal * * @param nl.netwerkvsp.server.service2000.ejb.entity.relatiebeheer.TRelatieLocal the related $target.variableName * * @ejb.interface-method view-type="local" * * @param tTypeAccount the new CMR value */ public abstract void setTTypeAccount(nl.netwerkvsp.server.service2000.ejb.entity.relatiebeheer.TTypeAccountLocal tTypeAccount); /** * This create method takes only mandatory (non-nullable) parameters. * * When the client invokes a create method, the EJB container invokes the ejbCreate method. * Typically, an ejbCreate method in an entity bean performs the following tasks: * * * @param naam the naam value * @param straatnaam the straatnaam value * @param huisnummer the huisnummer value * @param postcode6 the postcode6 value * @param plaatsnaam the plaatsnaam value * @param postHuisnummer the postHuisnummer value * @param postPostcode6 the postPostcode6 value * @param postPlaatsnaam the postPlaatsnaam value * @param relatieType1 the relatieType1 value * @param relatieType2 the relatieType2 value * @param relatieType3 the relatieType3 value * @param relatieType4 the relatieType4 value * @param relatieType5 the relatieType5 value * @param relatieType6 the relatieType6 value * @param relatieType7 the relatieType7 value * @param relatieType8 the relatieType8 value * @param relatieType9 the relatieType9 value * @param relatieType10 the relatieType10 value * @return the primary key of the new instance * * @ejb.create-method */ public java.lang.String ejbCreate( java.lang.String naam, java.lang.String straatnaam, int huisnummer, java.lang.String postcode6, java.lang.String plaatsnaam, int postHuisnummer, java.lang.String postPostcode6, java.lang.String postPlaatsnaam, byte relatieType1, byte relatieType2, byte relatieType3, byte relatieType4, byte relatieType5, byte relatieType6, byte relatieType7, byte relatieType8, byte relatieType9, byte relatieType10 ) throws javax.ejb.CreateException { // Use Middlegen's Sequence Block PK generator. Only works for numeric fields try { nl.netwerkvsp.server.service2000.ejb.entity.SequenceSessionLocal sequenceGenerator = nl.netwerkvsp.server.service2000.ejb.entity.SequenceSessionUtil.getLocalHome().create(); // nl.netwerkvsp.common.BeanLocator.getInstance().getLocalHome(SequenceSessionLocalHome.COMP_NAME).create(); } catch( javax.naming.NamingException e ) { throw new javax.ejb.CreateException(e.getMessage()); } // Set CMP fields setNaam(naam); setStraatnaam(straatnaam); setHuisnummer(huisnummer); setPostcode6(postcode6); setPlaatsnaam(plaatsnaam); setPostHuisnummer(postHuisnummer); setPostPostcode6(postPostcode6); setPostPlaatsnaam(postPlaatsnaam); setRelatieType1(relatieType1); setRelatieType2(relatieType2); setRelatieType3(relatieType3); setRelatieType4(relatieType4); setRelatieType5(relatieType5); setRelatieType6(relatieType6); setRelatieType7(relatieType7); setRelatieType8(relatieType8); setRelatieType9(relatieType9); setRelatieType10(relatieType10); // EJB 2.0 spec says return null for CMP ejbCreate methods. return null; } /** * The container invokes thos method immediately after it calls ejbCreate. * * @param naam the naam value * @param straatnaam the straatnaam value * @param huisnummer the huisnummer value * @param postcode6 the postcode6 value * @param plaatsnaam the plaatsnaam value * @param postHuisnummer the postHuisnummer value * @param postPostcode6 the postPostcode6 value * @param postPlaatsnaam the postPlaatsnaam value * @param relatieType1 the relatieType1 value * @param relatieType2 the relatieType2 value * @param relatieType3 the relatieType3 value * @param relatieType4 the relatieType4 value * @param relatieType5 the relatieType5 value * @param relatieType6 the relatieType6 value * @param relatieType7 the relatieType7 value * @param relatieType8 the relatieType8 value * @param relatieType9 the relatieType9 value * @param relatieType10 the relatieType10 value */ public void ejbPostCreate( java.lang.String naam, java.lang.String straatnaam, int huisnummer, java.lang.String postcode6, java.lang.String plaatsnaam, int postHuisnummer, java.lang.String postPostcode6, java.lang.String postPlaatsnaam, byte relatieType1, byte relatieType2, byte relatieType3, byte relatieType4, byte relatieType5, byte relatieType6, byte relatieType7, byte relatieType8, byte relatieType9, byte relatieType10 ) throws javax.ejb.CreateException { // Set CMR fields } /** * This create method takes all parameters (both nullable and not nullable). * * When the client invokes a create method, the EJB container invokes the ejbCreate method. * Typically, an ejbCreate method in an entity bean performs the following tasks: * * * @param aanhef the aanhef value * @param naam the naam value * @param straatnaam the straatnaam value * @param huisnummer the huisnummer value * @param huisnummerAppendix the huisnummerAppendix value * @param postcode6 the postcode6 value * @param plaatsnaam the plaatsnaam value * @param landcode the landcode value * @param postStraatnaam the postStraatnaam value * @param postHuisnummer the postHuisnummer value * @param postHuisnummerAppendix the postHuisnummerAppendix value * @param postPostcode6 the postPostcode6 value * @param postPlaatsnaam the postPlaatsnaam value * @param postLandcode the postLandcode value * @param telNetnummer the telNetnummer value * @param telAbonneenummer the telAbonneenummer value * @param gsmNetnummer the gsmNetnummer value * @param gsmAbonneenummer the gsmAbonneenummer value * @param faxNetnummer the faxNetnummer value * @param faxAbonneenummer the faxAbonneenummer value * @param eMail the eMail value * @param website the website value * @param relatieType1 the relatieType1 value * @param relatieType2 the relatieType2 value * @param relatieType3 the relatieType3 value * @param relatieType4 the relatieType4 value * @param relatieType5 the relatieType5 value * @param relatieType6 the relatieType6 value * @param relatieType7 the relatieType7 value * @param relatieType8 the relatieType8 value * @param relatieType9 the relatieType9 value * @param relatieType10 the relatieType10 value * @param standaardkorting the standaardkorting value * @param standaardDuizendprijs the standaardDuizendprijs value * @param afwRelatieOpdrbev the afwRelatieOpdrbev value * @param afwRelatieKopieOpdrbev the afwRelatieKopieOpdrbev value * @param afwRelatieFaktuur the afwRelatieFaktuur value * @param afwRelatieKopieFaktuur the afwRelatieKopieFaktuur value * @param verkoperBinnendienst the verkoperBinnendienst value * @param verkoperBuitendienst the verkoperBuitendienst value * @param gewichtstoeslag the gewichtstoeslag value * @param verwijzendeRelatie the verwijzendeRelatie value * @param dossier the dossier value * @param perceel the perceel value * @param soortOnderzoek the soortOnderzoek value * @param tTypeAccount CMR field * @return the primary key of the new instance * * @ejb.create-method */ public java.lang.String ejbCreate( java.lang.String aanhef, java.lang.String naam, java.lang.String straatnaam, int huisnummer, java.lang.String huisnummerAppendix, java.lang.String postcode6, java.lang.String plaatsnaam, java.lang.String landcode, java.lang.String postStraatnaam, int postHuisnummer, java.lang.String postHuisnummerAppendix, java.lang.String postPostcode6, java.lang.String postPlaatsnaam, java.lang.String postLandcode, java.lang.String telNetnummer, java.lang.String telAbonneenummer, java.lang.String gsmNetnummer, java.lang.String gsmAbonneenummer, java.lang.String faxNetnummer, java.lang.String faxAbonneenummer, java.lang.String eMail, java.lang.String website, byte relatieType1, byte relatieType2, byte relatieType3, byte relatieType4, byte relatieType5, byte relatieType6, byte relatieType7, byte relatieType8, byte relatieType9, byte relatieType10, java.math.BigDecimal standaardkorting, java.math.BigDecimal standaardDuizendprijs, java.lang.String afwRelatieOpdrbev, java.lang.String afwRelatieKopieOpdrbev, java.lang.String afwRelatieFaktuur, java.lang.String afwRelatieKopieFaktuur, java.lang.String verkoperBinnendienst, java.lang.String verkoperBuitendienst, java.lang.String gewichtstoeslag, java.lang.String verwijzendeRelatie, java.lang.String dossier, long perceel, byte soortOnderzoek, nl.netwerkvsp.server.service2000.ejb.entity.relatiebeheer.TTypeAccountLocal tTypeAccount ) throws javax.ejb.CreateException { // Use Middlegen's Sequence Block PK generator. Only works for numeric fields try { nl.netwerkvsp.server.service2000.ejb.entity.SequenceSessionLocal sequenceGenerator = nl.netwerkvsp.server.service2000.ejb.entity.SequenceSessionUtil.getLocalHome().create(); // nl.netwerkvsp.common.BeanLocator.getInstance().getLocalHome(SequenceSessionLocalHome.COMP_NAME).create(); } catch( javax.naming.NamingException e ) { throw new javax.ejb.CreateException(e.getMessage()); } // Set CMP fields setAanhef(aanhef); setNaam(naam); setStraatnaam(straatnaam); setHuisnummer(huisnummer); setHuisnummerAppendix(huisnummerAppendix); setPostcode6(postcode6); setPlaatsnaam(plaatsnaam); setLandcode(landcode); setPostStraatnaam(postStraatnaam); setPostHuisnummer(postHuisnummer); setPostHuisnummerAppendix(postHuisnummerAppendix); setPostPostcode6(postPostcode6); setPostPlaatsnaam(postPlaatsnaam); setPostLandcode(postLandcode); setTelNetnummer(telNetnummer); setTelAbonneenummer(telAbonneenummer); setGsmNetnummer(gsmNetnummer); setGsmAbonneenummer(gsmAbonneenummer); setFaxNetnummer(faxNetnummer); setFaxAbonneenummer(faxAbonneenummer); setEMail(eMail); setWebsite(website); setRelatieType1(relatieType1); setRelatieType2(relatieType2); setRelatieType3(relatieType3); setRelatieType4(relatieType4); setRelatieType5(relatieType5); setRelatieType6(relatieType6); setRelatieType7(relatieType7); setRelatieType8(relatieType8); setRelatieType9(relatieType9); setRelatieType10(relatieType10); setStandaardkorting(standaardkorting); setStandaardDuizendprijs(standaardDuizendprijs); setAfwRelatieOpdrbev(afwRelatieOpdrbev); setAfwRelatieKopieOpdrbev(afwRelatieKopieOpdrbev); setAfwRelatieFaktuur(afwRelatieFaktuur); setAfwRelatieKopieFaktuur(afwRelatieKopieFaktuur); setVerkoperBinnendienst(verkoperBinnendienst); setVerkoperBuitendienst(verkoperBuitendienst); setGewichtstoeslag(gewichtstoeslag); setVerwijzendeRelatie(verwijzendeRelatie); setDossier(dossier); setPerceel(perceel); setSoortOnderzoek(soortOnderzoek); // EJB 2.0 spec says return null for CMP ejbCreate methods. return null; } /** * The container invokes this method immediately after it calls ejbCreate. * * @param aanhef the aanhef value * @param naam the naam value * @param straatnaam the straatnaam value * @param huisnummer the huisnummer value * @param huisnummerAppendix the huisnummerAppendix value * @param postcode6 the postcode6 value * @param plaatsnaam the plaatsnaam value * @param landcode the landcode value * @param postStraatnaam the postStraatnaam value * @param postHuisnummer the postHuisnummer value * @param postHuisnummerAppendix the postHuisnummerAppendix value * @param postPostcode6 the postPostcode6 value * @param postPlaatsnaam the postPlaatsnaam value * @param postLandcode the postLandcode value * @param telNetnummer the telNetnummer value * @param telAbonneenummer the telAbonneenummer value * @param gsmNetnummer the gsmNetnummer value * @param gsmAbonneenummer the gsmAbonneenummer value * @param faxNetnummer the faxNetnummer value * @param faxAbonneenummer the faxAbonneenummer value * @param eMail the eMail value * @param website the website value * @param relatieType1 the relatieType1 value * @param relatieType2 the relatieType2 value * @param relatieType3 the relatieType3 value * @param relatieType4 the relatieType4 value * @param relatieType5 the relatieType5 value * @param relatieType6 the relatieType6 value * @param relatieType7 the relatieType7 value * @param relatieType8 the relatieType8 value * @param relatieType9 the relatieType9 value * @param relatieType10 the relatieType10 value * @param standaardkorting the standaardkorting value * @param standaardDuizendprijs the standaardDuizendprijs value * @param afwRelatieOpdrbev the afwRelatieOpdrbev value * @param afwRelatieKopieOpdrbev the afwRelatieKopieOpdrbev value * @param afwRelatieFaktuur the afwRelatieFaktuur value * @param afwRelatieKopieFaktuur the afwRelatieKopieFaktuur value * @param verkoperBinnendienst the verkoperBinnendienst value * @param verkoperBuitendienst the verkoperBuitendienst value * @param gewichtstoeslag the gewichtstoeslag value * @param verwijzendeRelatie the verwijzendeRelatie value * @param dossier the dossier value * @param perceel the perceel value * @param soortOnderzoek the soortOnderzoek value * @param tTypeAccount CMR field */ public void ejbPostCreate( java.lang.String aanhef, java.lang.String naam, java.lang.String straatnaam, int huisnummer, java.lang.String huisnummerAppendix, java.lang.String postcode6, java.lang.String plaatsnaam, java.lang.String landcode, java.lang.String postStraatnaam, int postHuisnummer, java.lang.String postHuisnummerAppendix, java.lang.String postPostcode6, java.lang.String postPlaatsnaam, java.lang.String postLandcode, java.lang.String telNetnummer, java.lang.String telAbonneenummer, java.lang.String gsmNetnummer, java.lang.String gsmAbonneenummer, java.lang.String faxNetnummer, java.lang.String faxAbonneenummer, java.lang.String eMail, java.lang.String website, byte relatieType1, byte relatieType2, byte relatieType3, byte relatieType4, byte relatieType5, byte relatieType6, byte relatieType7, byte relatieType8, byte relatieType9, byte relatieType10, java.math.BigDecimal standaardkorting, java.math.BigDecimal standaardDuizendprijs, java.lang.String afwRelatieOpdrbev, java.lang.String afwRelatieKopieOpdrbev, java.lang.String afwRelatieFaktuur, java.lang.String afwRelatieKopieFaktuur, java.lang.String verkoperBinnendienst, java.lang.String verkoperBuitendienst, java.lang.String gewichtstoeslag, java.lang.String verwijzendeRelatie, java.lang.String dossier, long perceel, byte soortOnderzoek, nl.netwerkvsp.server.service2000.ejb.entity.relatiebeheer.TTypeAccountLocal tTypeAccount ) throws javax.ejb.CreateException { // Set CMR fields setTTypeAccount(tTypeAccount); } /** * Gets a value object representing this instance * * @return a value object representing this instance * * @ejb.interface-method */ public abstract nl.netwerkvsp.data.relatiebeheer.TRelatieValue getTRelatieValue(); /** * Sets a value object representing this instance * * @param value a value object holding new values * * @ejb.interface-method */ public abstract void setTRelatieValue( nl.netwerkvsp.data.relatiebeheer.TRelatieValue val ); /** * Creates an instance based on a value object * * When the client invokes a create method, the EJB container invokes the ejbCreate method. * Typically, an ejbCreate method in an entity bean performs the following tasks: * * * @param value the value object used to initialise the new instance * @return the primary key of the new instance * * @ejb.create-method */ public java.lang.String ejbCreate(nl.netwerkvsp.data.relatiebeheer.TRelatieValue val) throws javax.ejb.CreateException { // Use Middlegen's Sequence Block PK generator. Only works for numeric fields try { nl.netwerkvsp.server.service2000.ejb.entity.SequenceSessionLocal sequenceGenerator = nl.netwerkvsp.server.service2000.ejb.entity.SequenceSessionUtil.getLocalHome().create(); // nl.netwerkvsp.common.BeanLocator.getInstance().getLocalHome(SequenceSessionLocalHome.COMP_NAME).create(); } catch( javax.naming.NamingException e ) { throw new javax.ejb.CreateException(e.getMessage()); } setTRelatieValue(val); // EJB 2.0 spec says return null for CMP ejbCreate methods. return null; } /** * The container invokes this method immediately after it calls ejbCreate. * * @param data the data object used to initialise the new instance */ public void ejbPostCreate( nl.netwerkvsp.data.relatiebeheer.TRelatieValue val ) throws javax.ejb.CreateException { } // No C:\NetwerkVSP\Middlegen/src/middlegen/cmp20-t_relatie-class-code.txt found. }