package it.html.ejb.entity.cmp;
public interface User extends javax.ejb.EJBObject{
//Metodi Getter e setter degli attributi
public java.lang.String getLogin( )
throws java.rmi.RemoteException;
public void setLogin( java.lang.String login )
throws java.rmi.RemoteException;
public java.lang.String getNome( )
throws java.rmi.RemoteException;
public void setNome( java.lang.String nome )
throws java.rmi.RemoteException;
public java.lang.String getCognome( )
throws java.rmi.RemoteException;
public void setCognome( java.lang.String cognome )
throws java.rmi.RemoteException;
public java.lang.String getEmail( )
throws java.rmi.RemoteException;
public void setEmail( java.lang.String email )
throws java.rmi.RemoteException;
public java.lang.String getTelefono( )
throws java.rmi.RemoteException;
public void setTelefono( java.lang.String telefono )
throws java.rmi.RemoteException;
}