Uses of Class
edu.uoc.tfc.dbmodel.security.Operation

Packages that use Operation
edu.uoc.tfc.dbmodel.security   
edu.uoc.tfc.dbmodel.security.crud   
 

Uses of Operation in edu.uoc.tfc.dbmodel.security
 

Subclasses of Operation in edu.uoc.tfc.dbmodel.security
 class OperationImpl
           
 

Methods in edu.uoc.tfc.dbmodel.security that return Operation
 Operation OperationDao.create(Operation operation)
          Creates an instance of edu.uoc.tfc.dbmodel.security.Operation and adds it to the persistent store.
 Operation OperationDaoBase.create(Operation operation)
           
 Operation OperationDao.create(java.lang.String name, java.lang.String description, java.lang.String url, java.lang.Integer parent, java.lang.Integer ordre)
           Creates a new edu.uoc.tfc.dbmodel.security.Operation instance from all attributes and adds it to the persistent store.
 Operation OperationDaoBase.create(java.lang.String name, java.lang.String description, java.lang.String url, java.lang.Integer parent, java.lang.Integer ordre)
           
 Operation OperationDao.load(java.lang.Long id)
          Loads an instance of edu.uoc.tfc.dbmodel.security.Operation from the persistent store.
 Operation OperationDaoBase.load(java.lang.Long id)
           
static Operation Operation.Factory.newInstance()
          Constructs a new instance of Operation.
static Operation Operation.Factory.newInstance(java.lang.String name, java.lang.String description, java.lang.String url, java.lang.Integer parent, java.lang.Integer ordre)
          Constructs a new instance of Operation, taking all required and/or read-only properties as arguments.
static Operation Operation.Factory.newInstance(java.lang.String name, java.lang.String description, java.lang.String url, java.lang.Integer parent, java.lang.Integer ordre, java.util.Collection roles)
          Constructs a new instance of Operation, taking all possible properties (except the identifier(s))as arguments.
 Operation OperationDao.operationVOToEntity(OperationVO operationVO)
          Converts an instance of type OperationVO to this DAO's entity.
 Operation OperationDaoImpl.operationVOToEntity(OperationVO operationVO)
           
 

Methods in edu.uoc.tfc.dbmodel.security with parameters of type Operation
 java.lang.Object OperationDao.create(int transform, Operation operation)
           Does the same thing as OperationDao.create(edu.uoc.tfc.dbmodel.security.Operation) with an additional flag called transform.
 java.lang.Object OperationDaoBase.create(int transform, Operation operation)
           
 Operation OperationDao.create(Operation operation)
          Creates an instance of edu.uoc.tfc.dbmodel.security.Operation and adds it to the persistent store.
 Operation OperationDaoBase.create(Operation operation)
           
 void OperationDao.operationVOToEntity(OperationVO source, Operation target, boolean copyIfNull)
          Copies the fields of OperationVO to the specified entity.
 void OperationDaoBase.operationVOToEntity(OperationVO source, Operation target, boolean copyIfNull)
           
 void OperationDaoImpl.operationVOToEntity(OperationVO source, Operation target, boolean copyIfNull)
           
 void OperationDao.remove(Operation operation)
          Removes the instance of edu.uoc.tfc.dbmodel.security.Operation from the persistent store.
 void OperationDaoBase.remove(Operation operation)
           
 OperationVO OperationDao.toOperationVO(Operation entity)
          Converts this DAO's entity to an object of type OperationVO.
 OperationVO OperationDaoBase.toOperationVO(Operation entity)
           
 OperationVO OperationDaoImpl.toOperationVO(Operation entity)
           
 void OperationDao.toOperationVO(Operation source, OperationVO target)
          Copies the fields of the specified entity to the target value object.
 void OperationDaoBase.toOperationVO(Operation source, OperationVO target)
           
 void OperationDaoImpl.toOperationVO(Operation source, OperationVO target)
           
 void OperationDao.update(Operation operation)
          Updates the operation instance in the persistent store.
 void OperationDaoBase.update(Operation operation)
           
 

Uses of Operation in edu.uoc.tfc.dbmodel.security.crud
 

Methods in edu.uoc.tfc.dbmodel.security.crud that return Operation
 Operation OperationManageableDaoBase.create(java.lang.String name, java.lang.String description, java.lang.String url, java.lang.Integer parent, java.lang.Integer ordre, java.lang.Long id, java.lang.Long[] roles)
           
 Operation OperationManageableDao.create(java.lang.String name, java.lang.String description, java.lang.String url, java.lang.Integer parent, java.lang.Integer ordre, java.lang.Long id, java.lang.Long[] roles)
           
 Operation OperationManageableDaoBase.readById(java.lang.Long id)
           
 Operation OperationManageableDao.readById(java.lang.Long id)
           
 Operation OperationManageableDaoBase.update(java.lang.String name, java.lang.String description, java.lang.String url, java.lang.Integer parent, java.lang.Integer ordre, java.lang.Long id, java.lang.Long[] roles)
           
 Operation OperationManageableDao.update(java.lang.String name, java.lang.String description, java.lang.String url, java.lang.Integer parent, java.lang.Integer ordre, java.lang.Long id, java.lang.Long[] roles)