atg.svc.repository.beans
Class _TransactionalFragmentParameterValue_BeanImpl

java.lang.Object
  extended by atg.svc.repository.beans._TransactionalFragmentParameterValue_Impl
      extended by atg.svc.repository.beans._TransactionalFragmentParameterValue_BeanImpl
All Implemented Interfaces:
atg.repository.tojava.runtime.RJBeanObject, atg.repository.tojava.runtime.RJObject, atg.svc.repository.beans.pv.TransactionalFragmentParameterValue_PV, TransactionalFragmentParameterValue, java.io.Serializable, javax.ejb.EJBLocalObject

public class _TransactionalFragmentParameterValue_BeanImpl
extends _TransactionalFragmentParameterValue_Impl
implements atg.repository.tojava.runtime.RJBeanObject

See Also:
Serialized Form

Field Summary
 
Fields inherited from interface atg.repository.tojava.runtime.RJBeanObject
CLASS_VERSION
 
Constructor Summary
_TransactionalFragmentParameterValue_BeanImpl()
           
 
Method Summary
 javax.ejb.EJBLocalHome _getRepositoryHome()
          Gets the repository home that corresponds to this bean.
 boolean _isMutable()
          Returns true if the item is mutable.
 javax.ejb.EJBLocalHome getEJBLocalHome()
          Gets the home associated with this repository object.
 java.lang.String getId()
          Getter for property id
 java.lang.String getName()
          Getter for property name
 java.lang.Object getPrimaryKey()
           
 java.lang.String getValue()
          Getter for property value
 boolean isIdentical(javax.ejb.EJBLocalObject obj)
          Returns true if the given object is identical to this one.
 void prepareInstanceForWrite()
          This must be called if the application intends to both read and write the instance in the same transaction, and it intends to do a read before doing a write.
 void remove()
          Removes this object from the repository.
 void setId(java.lang.String value)
          Setter for property id .
 void setName(java.lang.String value)
          Setter for property name .
 void setValue(java.lang.String value)
          Setter for property value .
 void writeInstance()
          This must be called after modifying an instance with a persistent implementation to guarantee that all changes are made persistent and visible to queries.
 
Methods inherited from class atg.svc.repository.beans._TransactionalFragmentParameterValue_Impl
_getItemDescriptorName, _getObjectInterfaceClass, copyTo, isRemoved
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface atg.repository.tojava.runtime.RJObject
_getItemDescriptorName, _getObjectInterfaceClass
 

Constructor Detail

_TransactionalFragmentParameterValue_BeanImpl

public _TransactionalFragmentParameterValue_BeanImpl()
Method Detail

getId

public java.lang.String getId()
Description copied from interface: atg.svc.repository.beans.pv.TransactionalFragmentParameterValue_PV
Getter for property id

Specified by:
getId in interface atg.svc.repository.beans.pv.TransactionalFragmentParameterValue_PV
Specified by:
getId in interface TransactionalFragmentParameterValue
Returns:
String

setId

public void setId(java.lang.String value)
Description copied from interface: atg.svc.repository.beans.pv.TransactionalFragmentParameterValue_PV
Setter for property id . The TransactionalFragmentParameterValue_PV.writeInstance() method must be called afterwards to insure that any changes are made persistent (if the instance is backed by a persistent implementation). The TransactionalFragmentParameterValue_PV.prepareInstanceForWrite() method may need to be called before making any changes.

Specified by:
setId in interface atg.svc.repository.beans.pv.TransactionalFragmentParameterValue_PV
Specified by:
setId in interface TransactionalFragmentParameterValue
Parameters:
value - String

getName

public java.lang.String getName()
Description copied from interface: atg.svc.repository.beans.pv.TransactionalFragmentParameterValue_PV
Getter for property name

Specified by:
getName in interface atg.svc.repository.beans.pv.TransactionalFragmentParameterValue_PV
Specified by:
getName in interface TransactionalFragmentParameterValue
Returns:
String

setName

public void setName(java.lang.String value)
Description copied from interface: atg.svc.repository.beans.pv.TransactionalFragmentParameterValue_PV
Setter for property name . The TransactionalFragmentParameterValue_PV.writeInstance() method must be called afterwards to insure that any changes are made persistent (if the instance is backed by a persistent implementation). The TransactionalFragmentParameterValue_PV.prepareInstanceForWrite() method may need to be called before making any changes.

Specified by:
setName in interface atg.svc.repository.beans.pv.TransactionalFragmentParameterValue_PV
Specified by:
setName in interface TransactionalFragmentParameterValue
Parameters:
value - String

getValue

public java.lang.String getValue()
Description copied from interface: atg.svc.repository.beans.pv.TransactionalFragmentParameterValue_PV
Getter for property value

Specified by:
getValue in interface atg.svc.repository.beans.pv.TransactionalFragmentParameterValue_PV
Specified by:
getValue in interface TransactionalFragmentParameterValue
Returns:
String

setValue

public void setValue(java.lang.String value)
Description copied from interface: atg.svc.repository.beans.pv.TransactionalFragmentParameterValue_PV
Setter for property value . The TransactionalFragmentParameterValue_PV.writeInstance() method must be called afterwards to insure that any changes are made persistent (if the instance is backed by a persistent implementation). The TransactionalFragmentParameterValue_PV.prepareInstanceForWrite() method may need to be called before making any changes.

Specified by:
setValue in interface atg.svc.repository.beans.pv.TransactionalFragmentParameterValue_PV
Specified by:
setValue in interface TransactionalFragmentParameterValue
Parameters:
value - String

writeInstance

public void writeInstance()
                   throws javax.ejb.EJBException
Description copied from interface: atg.repository.tojava.runtime.RJObject
This must be called after modifying an instance with a persistent implementation to guarantee that all changes are made persistent and visible to queries. Changes might be made visible before calling this method, but this is not guaranteed until this method is called.

Specified by:
writeInstance in interface atg.repository.tojava.runtime.RJObject
Specified by:
writeInstance in interface atg.svc.repository.beans.pv.TransactionalFragmentParameterValue_PV
Specified by:
writeInstance in interface TransactionalFragmentParameterValue
Throws:
javax.ejb.EJBException - If the operation fails.

prepareInstanceForWrite

public void prepareInstanceForWrite()
                             throws javax.ejb.EJBException
Description copied from interface: atg.repository.tojava.runtime.RJObject
This must be called if the application intends to both read and write the instance in the same transaction, and it intends to do a read before doing a write. This must be called before that first read.

Specified by:
prepareInstanceForWrite in interface atg.repository.tojava.runtime.RJObject
Specified by:
prepareInstanceForWrite in interface atg.svc.repository.beans.pv.TransactionalFragmentParameterValue_PV
Specified by:
prepareInstanceForWrite in interface TransactionalFragmentParameterValue
Throws:
javax.ejb.EJBException - If the operation fails.

_isMutable

public boolean _isMutable()
Returns true if the item is mutable. Items are only mutable after a setter method or prepareInstanceForWrite is called.

Specified by:
_isMutable in interface atg.svc.repository.beans.pv.TransactionalFragmentParameterValue_PV
Specified by:
_isMutable in interface TransactionalFragmentParameterValue

getEJBLocalHome

public javax.ejb.EJBLocalHome getEJBLocalHome()
Description copied from interface: atg.repository.tojava.runtime.RJObject
Gets the home associated with this repository object.

Specified by:
getEJBLocalHome in interface atg.repository.tojava.runtime.RJObject
Specified by:
getEJBLocalHome in interface javax.ejb.EJBLocalObject
Returns:
The home (repository home for ReposImpl/bean home for BeanImpl).

_getRepositoryHome

public javax.ejb.EJBLocalHome _getRepositoryHome()
Description copied from interface: atg.repository.tojava.runtime.RJBeanObject
Gets the repository home that corresponds to this bean. This is needed so that beans can get the repository impl that corresponds to it for copying to it before save/update/etc.

Specified by:
_getRepositoryHome in interface atg.repository.tojava.runtime.RJBeanObject
Returns:
The Repository Impl home.

getPrimaryKey

public java.lang.Object getPrimaryKey()
                               throws javax.ejb.EJBException
Specified by:
getPrimaryKey in interface javax.ejb.EJBLocalObject
Throws:
javax.ejb.EJBException

isIdentical

public boolean isIdentical(javax.ejb.EJBLocalObject obj)
Description copied from interface: atg.repository.tojava.runtime.RJObject
Returns true if the given object is identical to this one.

Specified by:
isIdentical in interface atg.repository.tojava.runtime.RJObject
Specified by:
isIdentical in interface javax.ejb.EJBLocalObject
Parameters:
obj - The object to compare.
Returns:
True if the given object is identical to this one.

remove

public void remove()
            throws javax.ejb.RemoveException
Description copied from interface: atg.repository.tojava.runtime.RJObject
Removes this object from the repository. This is a no-op for bean impls.

Specified by:
remove in interface atg.repository.tojava.runtime.RJObject
Specified by:
remove in interface javax.ejb.EJBLocalObject
Throws:
javax.ejb.RemoveException - If the remove fails.