com.submersion.jspshop.ejb
Interface Value

All Superinterfaces:
javax.ejb.EJBObject, java.rmi.Remote

public interface Value
extends javax.ejb.EJBObject

Remote interface for Value entity bean

See Also:
ValueBean, ValueHome

Method Summary
 java.lang.Long getObjectID()
          returns the objectID that the value is linked to.
 java.lang.Long getPropertyID()
          returns the propertyID of which the value belongs to
 java.lang.String getValue()
          returns the String value of the property.
 java.lang.Long getValueID()
          returns the Primary key of the bean
 void setObjectID(java.lang.Long objectID)
          changes the objectID that the value is linked to.
 void setPropertyID(java.lang.Long propertyID)
          changes the propertyID that the value belongs to.
 void setValue(java.lang.String value)
          changes the string value of the property.
 
Methods inherited from interface javax.ejb.EJBObject
getEJBHome, getHandle, getPrimaryKey, isIdentical, remove
 

Method Detail

getValueID

public java.lang.Long getValueID()
                          throws java.rmi.RemoteException
returns the Primary key of the bean
Throws:
java.rmi.RemoteException -  

getPropertyID

public java.lang.Long getPropertyID()
                             throws java.rmi.RemoteException
returns the propertyID of which the value belongs to
Throws:
java.rmi.RemoteException -  

setPropertyID

public void setPropertyID(java.lang.Long propertyID)
                   throws java.rmi.RemoteException
changes the propertyID that the value belongs to. Should only be used during create.
Parameters:
propertyID -  
Throws:
java.rmi.RemoteException -  

getObjectID

public java.lang.Long getObjectID()
                           throws java.rmi.RemoteException
returns the objectID that the value is linked to.
Throws:
java.rmi.RemoteException -  

setObjectID

public void setObjectID(java.lang.Long objectID)
                 throws java.rmi.RemoteException
changes the objectID that the value is linked to. Should only be used during create.
Parameters:
objectID -  
Throws:
java.rmi.RemoteException -  

getValue

public java.lang.String getValue()
                          throws java.rmi.RemoteException
returns the String value of the property.
Throws:
java.rmi.RemoteException -  

setValue

public void setValue(java.lang.String value)
              throws java.rmi.RemoteException
changes the string value of the property.
Parameters:
value -  
Throws:
java.rmi.RemoteException -