Code Search for Developers
 
 
  

ReportInstanceIf.java from Negest at Krugle


Show ReportInstanceIf.java syntax highlighted

package tk.sabreWulf.negest.entity.reports;

import java.util.Set;

import tk.sabreWulf.negest.entity.customer.ClienteIf;

/**
 * The ReportInstanceIf 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 ReportInstanceIf {

    /**
     * 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>idreporttypeversion</code> (foreign key) property.
    *
    * @return the value of the <code>idreporttypeversion</code> property.
    */
   java.lang.Long getIdreporttypeversion();

   /**
    * Sets the value of the <code>idreporttypeversion</code> (foreign key) property.
    *
    * @param idreporttypeversion a value for <code>idreporttypeversion</code>.
    */
   void setIdreporttypeversion(java.lang.Long idreporttypeversion);

   /**
    * 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>conclusions</code> property.
    *
    * @return the value of the <code>conclusions</code> property
    */
   java.lang.String getConclusions();

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

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

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

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

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

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

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

   /**
    * Returns the value of the <code>creationdate</code> property.
    *
    * @return the value of the <code>creationdate</code> property
    */
   java.sql.Timestamp getCreationdate();

   /**
    * Sets the value of the <code>creationdate</code> property.
    *
    * @param creationdate the value for the <code>creationdate</code> property
    */
   void setCreationdate(java.sql.Timestamp creationdate);

   /**
    * Returns the value of the <code>validuntil</code> property.
    *
    * @return the value of the <code>validuntil</code> property
    */
   java.sql.Timestamp getValiduntil();

   /**
    * Sets the value of the <code>validuntil</code> property.
    *
    * @param validuntil the value for the <code>validuntil</code> property
    */
   void setValiduntil(java.sql.Timestamp validuntil);


   /**
    * Returns the value of the <code>idreporttypeversionReporttypeversion</code> relation property.
    *
    * @return the value of the <code>idreporttypeversionReporttypeversion</code> relation property.
    */
   ReportTypeVersionIf getIdReportTypeVersion();

   /**
    * Sets the value of the <code>idreporttypeversionReporttypeversion</code> relation property.
    *
    * @param reporttypeversion a value for <code>idreporttypeversionReporttypeversion</code>.
    */
   void setIdReportTypeVersion(ReportTypeVersionIf reporttypeversion);
   
   
   /**
    * Returns the value of the <code>idCliente</code> property.
    *
    * @return the value of the <code>idCliente</code> property
    */
   ClienteIf getCliente();

   /**
    * Sets the value of the <code>id</code> property.
    *
    * @param id the value for the <code>id</code> property
    */
   void setCliente(ClienteIf cliente);
   
   /**
    * Returns the value of the <code>reportParameterValue</code> relation property.
    *
    * @return the value of the <code>reportParameterValue</code> relation property.
    */
   public Set <ReportParameterValueEJB>  getReportParameterValues();

   /**
    * Sets the value of the <code>reportParameterValue</code> relation property.
    *
    * @param parameters a value for <code>reportParameterValue</code>.
    */
   public void setReportParameterValues(Set <ReportParameterValueEJB> parameters);

}




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

  ParameterIf.java
  ParameterOptionsIf.java
  ReportInstanceIf.java
  ReportParameterValueIf.java
  ReportTypeIf.java
  ReportTypeVersionIf.java