Show EmpresaIf.java syntax highlighted
package tk.sabreWulf.negest.entity.core;
import java.util.Collection;
import javax.persistence.ManyToMany;
import tk.sabreWulf.negest.entity.security.UsuarioEJB;
/**
* The EmpresaIf 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 EmpresaIf {
/**
* 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>web</code> property.
*
* @return the value of the <code>web</code> property
*/
java.lang.String getWeb();
/**
* Sets the value of the <code>web</code> property.
*
* @param web the value for the <code>web</code> property
*/
void setWeb(java.lang.String web);
/**
* 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>logo</code> property.
*
* @return the value of the <code>logo</code> property
*/
java.lang.String getLogo();
/**
* Sets the value of the <code>logo</code> property.
*
* @param logo the value for the <code>logo</code> property
*/
void setLogo(java.lang.String logo);
public Collection<UsuarioEJB> getUsers();
public void setUsers(Collection<UsuarioEJB> users);
}
See more files for this project here