Package | Description |
---|---|
com.communote.server.core.property | |
com.communote.server.model.user | |
com.communote.server.persistence.user |
Modifier and Type | Method and Description |
---|---|
protected UserProperty |
UserPropertyAccessor.handleCreateNewProperty(User user)
Create a new property and associate it with the object
|
Modifier and Type | Method and Description |
---|---|
static UserProperty |
UserProperty.Factory.newInstance()
Constructs a new instance of
UserProperty . |
static UserProperty |
UserProperty.Factory.newInstance(String propertyValue,
String keyGroup,
String propertyKey,
Date lastModificationDate)
Constructs a new instance of
UserProperty , taking all possible properties (except
the identifier(s))as arguments. |
Modifier and Type | Method and Description |
---|---|
Set<UserProperty> |
User.getProperties() |
Modifier and Type | Method and Description |
---|---|
void |
User.setProperties(Set<UserProperty> properties) |
Modifier and Type | Method and Description |
---|---|
UserProperty |
UserPropertyDaoBase.create(UserProperty userProperty) |
UserProperty |
UserPropertyDao.create(UserProperty userProperty)
Creates an instance of com.communote.server.persistence.user.UserProperty and adds it to the
persistent store.
|
UserProperty |
UserPropertyDaoBase.load(Long id) |
UserProperty |
UserPropertyDao.load(Long id)
Loads an instance of com.communote.server.persistence.user.UserProperty from the persistent
store.
|
Modifier and Type | Method and Description |
---|---|
Collection<UserProperty> |
UserPropertyDaoBase.create(Collection<UserProperty> entities) |
Collection<UserProperty> |
UserPropertyDao.create(Collection<UserProperty> entities)
Creates a new instance of com.communote.server.persistence.user.UserProperty and adds from
the passed in
entities collection |
Collection<UserProperty> |
UserPropertyDaoBase.create(int transform,
Collection<UserProperty> entities) |
Collection<UserProperty> |
UserPropertyDaoBase.loadAll() |
Collection<UserProperty> |
UserPropertyDao.loadAll()
Loads all entities of type
UserProperty . |
Modifier and Type | Method and Description |
---|---|
Object |
UserPropertyDaoBase.create(int transform,
UserProperty userProperty) |
Object |
UserPropertyDao.create(int transform,
UserProperty userProperty)
Does the same thing as
UserPropertyDao.create(com.communote.server.model.user.UserProperty) with an
additional flag called transform . |
UserProperty |
UserPropertyDaoBase.create(UserProperty userProperty) |
UserProperty |
UserPropertyDao.create(UserProperty userProperty)
Creates an instance of com.communote.server.persistence.user.UserProperty and adds it to the
persistent store.
|
void |
UserPropertyDaoBase.evict(UserProperty entity)
Evicts (removes) the entity from the hibernate cache
|
void |
UserPropertyDao.evict(UserProperty entity)
Evicts (removes) the entity from the hibernate cache
|
void |
UserPropertyDaoBase.remove(UserProperty userProperty) |
void |
UserPropertyDao.remove(UserProperty userProperty)
Removes the instance of com.communote.server.persistence.user.UserProperty from the
persistent store.
|
protected Object |
UserPropertyDaoBase.transformEntity(int transform,
UserProperty entity)
Allows transformation of entities into value objects (or something else for that matter),
when the
transform flag is set to one of the constants defined in
UserPropertyDao , please note that the UserPropertyDao.TRANSFORM_NONE constant denotes
no transformation, so the entity itself will be returned. |
void |
UserPropertyDaoBase.update(UserProperty userProperty) |
void |
UserPropertyDao.update(UserProperty userProperty)
Updates the
userProperty instance in the persistent store. |
Modifier and Type | Method and Description |
---|---|
Collection<UserProperty> |
UserPropertyDaoBase.create(Collection<UserProperty> entities) |
Collection<UserProperty> |
UserPropertyDao.create(Collection<UserProperty> entities)
Creates a new instance of com.communote.server.persistence.user.UserProperty and adds from
the passed in
entities collection |
Collection<UserProperty> |
UserPropertyDaoBase.create(int transform,
Collection<UserProperty> entities) |
Collection<?> |
UserPropertyDao.create(int transform,
Collection<UserProperty> entities)
Does the same thing as
UserPropertyDao.create(com.communote.server.model.user.UserProperty) with an
additional flag called transform . |
void |
UserPropertyDaoBase.remove(Collection<UserProperty> entities) |
void |
UserPropertyDao.remove(Collection<UserProperty> entities)
Removes all entities in the given
entities |
void |
UserPropertyDaoBase.update(Collection<UserProperty> entities) |
void |
UserPropertyDao.update(Collection<UserProperty> entities)
Updates all instances in the
entities collection in the persistent store. |
Copyright © 2019 Communote team. All rights reserved.