Package | Description |
---|---|
com.communote.server.model.user | |
com.communote.server.persistence.user |
Modifier and Type | Class and Description |
---|---|
class |
UserImageImpl |
Modifier and Type | Method and Description |
---|---|
UserImage |
UserProfile.getLargeImage() |
UserImage |
UserProfile.getMediumImage() |
UserImage |
UserProfile.getSmallImage() |
static UserImage |
UserImage.Factory.newInstance()
Constructs a new instance of
UserImage . |
static UserImage |
UserImage.Factory.newInstance(byte[] image)
Constructs a new instance of
UserImage , taking
all possible properties (except the identifier(s))as arguments. |
Modifier and Type | Method and Description |
---|---|
static UserProfile |
UserProfile.Factory.newInstance(String lastName,
String salutation,
String position,
String company,
String firstName,
Timestamp lastModificationDate,
Timestamp lastPhotoModificationDate,
String timeZoneId,
UserImage smallImage,
Contact contact,
UserImage mediumImage,
UserImage largeImage,
NotificationConfig notificationConfig)
Constructs a new instance of
UserProfile , taking
all possible properties (except the identifier(s))as arguments. |
void |
UserProfile.setLargeImage(UserImage largeImage) |
void |
UserProfile.setMediumImage(UserImage mediumImage) |
void |
UserProfile.setSmallImage(UserImage smallImage) |
Modifier and Type | Method and Description |
---|---|
UserImage |
UserImageDaoBase.create(UserImage userImage) |
UserImage |
UserImageDao.create(UserImage userImage)
Creates an instance of com.communote.server.persistence.user.UserImage and adds it to the
persistent store.
|
UserImage |
UserImageDaoBase.load(Long id) |
UserImage |
UserImageDao.load(Long id)
Loads an instance of com.communote.server.persistence.user.UserImage from the persistent
store.
|
Modifier and Type | Method and Description |
---|---|
Collection<UserImage> |
UserImageDaoBase.create(Collection<UserImage> entities) |
Collection<UserImage> |
UserImageDao.create(Collection<UserImage> entities)
Creates a new instance of com.communote.server.persistence.user.UserImage and adds from the
passed in
entities collection |
Collection<UserImage> |
UserImageDaoBase.create(int transform,
Collection<UserImage> entities) |
Collection<UserImage> |
UserImageDaoBase.loadAll() |
Collection<UserImage> |
UserImageDao.loadAll()
Loads all entities of type
UserImage . |
Modifier and Type | Method and Description |
---|---|
Object |
UserImageDaoBase.create(int transform,
UserImage userImage) |
Object |
UserImageDao.create(int transform,
UserImage userImage)
Does the same thing as
UserImageDao.create(com.communote.server.model.user.UserImage) with an
additional flag called transform . |
UserImage |
UserImageDaoBase.create(UserImage userImage) |
UserImage |
UserImageDao.create(UserImage userImage)
Creates an instance of com.communote.server.persistence.user.UserImage and adds it to the
persistent store.
|
void |
UserImageDaoBase.evict(UserImage entity)
Evicts (removes) the entity from the hibernate cache
|
void |
UserImageDao.evict(UserImage entity)
Evicts (removes) the entity from the hibernate cache
|
void |
UserImageDaoBase.remove(UserImage userImage) |
void |
UserImageDao.remove(UserImage userImage)
Removes the instance of com.communote.server.persistence.user.UserImage from the persistent
store.
|
protected Object |
UserImageDaoBase.transformEntity(int transform,
UserImage 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
com.communote.server.persistence.user.UserImageDao , please note that the
UserImageDao.TRANSFORM_NONE constant denotes no transformation, so the entity itself will be
returned. |
void |
UserImageDaoBase.update(UserImage userImage) |
void |
UserImageDao.update(UserImage userImage)
Updates the
userImage instance in the persistent store. |
Modifier and Type | Method and Description |
---|---|
Collection<UserImage> |
UserImageDaoBase.create(Collection<UserImage> entities) |
Collection<UserImage> |
UserImageDao.create(Collection<UserImage> entities)
Creates a new instance of com.communote.server.persistence.user.UserImage and adds from the
passed in
entities collection |
Collection<UserImage> |
UserImageDaoBase.create(int transform,
Collection<UserImage> entities) |
Collection<?> |
UserImageDao.create(int transform,
Collection<UserImage> entities)
Does the same thing as
UserImageDao.create(com.communote.server.model.user.UserImage) with an
additional flag called transform . |
void |
UserImageDaoBase.remove(Collection<UserImage> entities) |
void |
UserImageDao.remove(Collection<UserImage> entities)
Removes all entities in the given
entities |
void |
UserImageDaoBase.update(Collection<UserImage> entities) |
void |
UserImageDao.update(Collection<UserImage> entities)
Updates all instances in the
entities collection in the persistent store. |
Copyright © 2019 Communote team. All rights reserved.