Code Search for Developers
 
 
  

ClienteIf.java from Negest at Krugle


Show ClienteIf.java syntax highlighted

package tk.sabreWulf.negest.entity.customer;

import java.util.Set;

import javax.persistence.CascadeType;
import javax.persistence.FetchType;
import javax.persistence.JoinColumn;
import javax.persistence.OneToMany;

import tk.sabreWulf.negest.entity.reports.ReportInstanceEJB;


/**
 * The ClienteIf interfaces exposes the persistence data.
 *
 * @author  Jose Manuel Molina Pascual  Sabre Wulf
 * @version $Revision: 1.4 $, $Date: 2005/06/29 20:56:26 $
 */
public interface ClienteIf {

    /**
     * Return the primary key.
     *
     * @return java.lang.Long he primary key.
     */
    java.lang.Long getPrimaryKey();

    /**
     * Set the primary key.
     *
     * @param pk return java.lang.Long with the primary key.
     */
    void setPrimaryKey(java.lang.Long pk);


   /**
    * Returns the value of the <code>id</code> property.
    *
    * @return the value of the <code>id</code> property
    */
   java.lang.Long getId();

   /**
    * Sets the value of the <code>id</code> property.
    *
    * @param id the value for the <code>id</code> property
    */
   void setId(java.lang.Long id);

   /**
    * Returns the value of the <code>nombre</code> property.
    *
    * @return the value of the <code>nombre</code> property
    */
   java.lang.String getNombre();

   /**
    * Sets the value of the <code>nombre</code> property.
    *
    * @param nombre the value for the <code>nombre</code> property
    */
   void setNombre(java.lang.String nombre);

   /**
    * Returns the value of the <code>nif</code> property.
    *
    * @return the value of the <code>nif</code> property
    */
   java.lang.String getNif();

   /**
    * Sets the value of the <code>nif</code> property.
    *
    * @param nif the value for the <code>nif</code> property
    */
   void setNif(java.lang.String nif);

   /**
    * Returns the value of the <code>observaciones</code> property.
    *
    * @return the value of the <code>observaciones</code> property
    */
   java.lang.String getObservaciones();

   /**
    * Sets the value of the <code>observaciones</code> property.
    *
    * @param observaciones the value for the <code>observaciones</code> property
    */
   void setObservaciones(java.lang.String observaciones);

   /**
    * Returns the value of the <code>iva</code> property.
    *
    * @return the value of the <code>iva</code> property
    */
   java.lang.Integer getIva();

   /**
    * Sets the value of the <code>iva</code> property.
    *
    * @param iva the value for the <code>iva</code> property
    */
   void setIva(java.lang.Integer iva);

   /**
    * Returns the value of the <code>facturaiva</code> property.
    *
    * @return the value of the <code>facturaiva</code> property
    */
   java.lang.Byte getFacturaiva();

   /**
    * Sets the value of the <code>facturaiva</code> property.
    *
    * @param facturaiva the value for the <code>facturaiva</code> property
    */
   void setFacturaiva(java.lang.Byte facturaiva);

   /**
    * Returns the value of the <code>riesgomax</code> property.
    *
    * @return the value of the <code>riesgomax</code> property
    */
   java.lang.Float getRiesgomax();

   /**
    * Sets the value of the <code>riesgomax</code> property.
    *
    * @param riesgomax the value for the <code>riesgomax</code> property
    */
   void setRiesgomax(java.lang.Float riesgomax);

   /**
    * Returns the value of the <code>riesgoactual</code> property.
    *
    * @return the value of the <code>riesgoactual</code> property
    */
   java.lang.Float getRiesgoactual();

   /**
    * Sets the value of the <code>riesgoactual</code> property.
    *
    * @param riesgoactual the value for the <code>riesgoactual</code> property
    */
   void setRiesgoactual(java.lang.Float riesgoactual);

   /**
    * Returns the value of the <code>copiasfactura</code> property.
    *
    * @return the value of the <code>copiasfactura</code> property
    */
   java.lang.Integer getCopiasfactura();

   /**
    * Sets the value of the <code>copiasfactura</code> property.
    *
    * @param copiasfactura the value for the <code>copiasfactura</code> property
    */
   void setCopiasfactura(java.lang.Integer copiasfactura);

   /**
    * Returns the value of the <code>tiporappel</code> property.
    *
    * @return the value of the <code>tiporappel</code> property
    */
   java.lang.String getTiporappel();

   /**
    * Sets the value of the <code>tiporappel</code> property.
    *
    * @param tiporappel the value for the <code>tiporappel</code> property
    */
   void setTiporappel(java.lang.String tiporappel);

   /**
    * Returns the value of the <code>ean</code> property.
    *
    * @return the value of the <code>ean</code> property
    */
   java.lang.String getEan();

   /**
    * Sets the value of the <code>ean</code> property.
    *
    * @param ean the value for the <code>ean</code> property
    */
   void setEan(java.lang.String ean);
   
   /**
    * Returns the value of the <code>reports</code> relation property.
    *
    * @return the value of the <code>reports</code> relation property.
    */
   public Set<ReportInstanceEJB> getReportInstances();

   /**
    * Sets the value of the <code>reports</code> relation property.
    *
    * @param reports a value for <code>reports</code>.
    */
   public void setReportInstances(Set<ReportInstanceEJB> reports) ;
}




See more files for this project here

Negest

This project aims to offer the SOHO integrated platform to track their customers, the events generated by/with them, the orders and billing, warehouses, customer locations and equipment. Its a CMP/ERP, with its focus on water treatment business, for this

Project homepage: http://sourceforge.net/projects/negest
Programming language(s): Java,XML
License: other

  ClienteIf.java
  ContactoIf.java
  DatoscobroIf.java
  DatosfactenvIf.java