Package | Description |
---|---|
com.communote.server.model.user | |
com.communote.server.persistence.user |
Modifier and Type | Class and Description |
---|---|
class |
ContactImpl |
Modifier and Type | Method and Description |
---|---|
Contact |
UserProfile.getContact() |
static Contact |
Contact.Factory.newInstance()
Constructs a new instance of
Contact . |
static Contact |
Contact.Factory.newInstance(String street,
String zip,
String city,
PhoneNumber phone,
PhoneNumber fax,
Country country)
Constructs a new instance of
Contact , 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.setContact(Contact contact) |
Modifier and Type | Method and Description |
---|---|
Contact |
ContactDaoBase.create(Contact contact) |
Contact |
ContactDao.create(Contact contact)
Creates an instance of com.communote.server.persistence.user.Contact and adds it to the
persistent store.
|
Contact |
ContactDaoBase.load(Long id) |
Contact |
ContactDao.load(Long id)
Loads an instance of com.communote.server.persistence.user.Contact from the persistent store.
|
Modifier and Type | Method and Description |
---|---|
Collection<Contact> |
ContactDaoBase.create(Collection<Contact> entities) |
Collection<Contact> |
ContactDao.create(Collection<Contact> entities)
Creates a new instance of com.communote.server.persistence.user.Contact and adds from the
passed in
entities collection |
Collection<Contact> |
ContactDaoBase.create(int transform,
Collection<Contact> entities) |
Collection<Contact> |
ContactDaoBase.loadAll() |
Collection<Contact> |
ContactDao.loadAll()
Loads all entities of type
Contact . |
Modifier and Type | Method and Description |
---|---|
Contact |
ContactDaoBase.create(Contact contact) |
Contact |
ContactDao.create(Contact contact)
Creates an instance of com.communote.server.persistence.user.Contact and adds it to the
persistent store.
|
Object |
ContactDaoBase.create(int transform,
Contact contact) |
Object |
ContactDao.create(int transform,
Contact contact)
Does the same thing as
ContactDao.create(com.communote.server.model.user.Contact) with an
additional flag called transform . |
void |
ContactDaoBase.evict(Contact entity)
Evicts (removes) the entity from the hibernate cache
|
void |
ContactDao.evict(Contact entity)
Evicts (removes) the entity from the hibernate cache
|
void |
ContactDaoBase.remove(Contact contact) |
void |
ContactDao.remove(Contact contact)
Removes the instance of com.communote.server.persistence.user.Contact from the persistent
store.
|
protected Object |
ContactDaoBase.transformEntity(int transform,
Contact 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.ContactDao , please note that the
ContactDao.TRANSFORM_NONE constant denotes no transformation, so the entity itself will be
returned. |
void |
ContactDaoBase.update(Contact contact) |
void |
ContactDao.update(Contact contact)
Updates the
contact instance in the persistent store. |
Modifier and Type | Method and Description |
---|---|
Collection<Contact> |
ContactDaoBase.create(Collection<Contact> entities) |
Collection<Contact> |
ContactDao.create(Collection<Contact> entities)
Creates a new instance of com.communote.server.persistence.user.Contact and adds from the
passed in
entities collection |
Collection<Contact> |
ContactDaoBase.create(int transform,
Collection<Contact> entities) |
Collection<?> |
ContactDao.create(int transform,
Collection<Contact> entities)
Does the same thing as
ContactDao.create(com.communote.server.model.user.Contact) with an
additional flag called transform . |
void |
ContactDaoBase.remove(Collection<Contact> entities) |
void |
ContactDao.remove(Collection<Contact> entities)
Removes all entities in the given
entities |
void |
ContactDaoBase.update(Collection<Contact> entities) |
void |
ContactDao.update(Collection<Contact> entities)
Updates all instances in the
entities collection in the persistent store. |
Copyright © 2019 Communote team. All rights reserved.