Package | Description |
---|---|
com.communote.server.model.user.group | |
com.communote.server.persistence.user.group |
Modifier and Type | Method and Description |
---|---|
static GroupProperty |
GroupProperty.Factory.newInstance()
Constructs a new instance of
GroupProperty . |
static GroupProperty |
GroupProperty.Factory.newInstance(String propertyValue,
String keyGroup,
String propertyKey,
Date lastModificationDate)
Constructs a new instance of
GroupProperty , taking all possible properties
(except the identifier(s))as arguments. |
Modifier and Type | Method and Description |
---|---|
Set<GroupProperty> |
Group.getProperties() |
Modifier and Type | Method and Description |
---|---|
static Group |
Group.Factory.newInstance(String alias,
String name,
String description,
Set<CommunoteEntity> groupMembers,
Set<GroupProperty> properties,
Set<BlogMember> memberships,
GlobalId globalId,
Set<Tag> tags)
Constructs a new instance of
Group , taking all possible properties (except the
identifier(s))as arguments. |
static ExternalUserGroup |
ExternalUserGroup.Factory.newInstance(String externalSystemId,
String externalId,
String additionalProperty,
String alias,
String name,
String description,
Set<CommunoteEntity> groupMembers,
Set<GroupProperty> properties,
Set<BlogMember> memberships,
GlobalId globalId,
Set<Group> groups,
Set<Tag> tags)
Constructs a new instance of
ExternalUserGroup , taking all possible properties
(except the identifier(s))as arguments. |
void |
Group.setProperties(Set<GroupProperty> properties) |
Modifier and Type | Method and Description |
---|---|
GroupProperty |
GroupPropertyDaoBase.create(GroupProperty entityGroupProperty) |
GroupProperty |
GroupPropertyDao.create(GroupProperty groupProperty)
Creates an instance of GroupProperty and adds it to the persistent store.
|
GroupProperty |
GroupPropertyDaoBase.load(Long id) |
GroupProperty |
GroupPropertyDao.load(Long id)
Loads an instance of GroupProperty from the persistent store.
|
Modifier and Type | Method and Description |
---|---|
Collection<GroupProperty> |
GroupPropertyDaoBase.create(Collection<GroupProperty> entities) |
Collection<GroupProperty> |
GroupPropertyDao.create(Collection<GroupProperty> entities)
Creates a new instance of GroupProperty and adds from the passed in
entities
collection |
Collection<GroupProperty> |
GroupPropertyDaoBase.create(int transform,
Collection<GroupProperty> entities) |
Collection<GroupProperty> |
GroupPropertyDaoBase.loadAll() |
Collection<GroupProperty> |
GroupPropertyDao.loadAll()
Loads all entities of type
GroupProperty . |
Modifier and Type | Method and Description |
---|---|
GroupProperty |
GroupPropertyDaoBase.create(GroupProperty entityGroupProperty) |
GroupProperty |
GroupPropertyDao.create(GroupProperty groupProperty)
Creates an instance of GroupProperty and adds it to the persistent store.
|
Object |
GroupPropertyDaoBase.create(int transform,
GroupProperty entityGroupProperty) |
Object |
GroupPropertyDao.create(int transform,
GroupProperty groupProperty)
Does the same thing as
GroupPropertyDao.create(com.communote.server.model.user.group.GroupProperty)
with an additional flag called transform . |
void |
GroupPropertyDaoBase.evict(GroupProperty entity)
Evicts (removes) the entity from the hibernate cache
|
void |
GroupPropertyDao.evict(GroupProperty entity)
Evicts (removes) the entity from the hibernate cache
|
void |
GroupPropertyDaoBase.remove(GroupProperty entityGroupProperty) |
void |
GroupPropertyDao.remove(GroupProperty groupProperty)
Removes the instance of GroupProperty from the persistent store.
|
protected Object |
GroupPropertyDaoBase.transformEntity(int transform,
GroupProperty 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
GroupPropertyDao , please note that the GroupPropertyDao.TRANSFORM_NONE constant denotes
no transformation, so the entity itself will be returned. |
void |
GroupPropertyDaoBase.update(GroupProperty entityGroupProperty) |
void |
GroupPropertyDao.update(GroupProperty groupProperty)
Updates the
entityGroupProperty instance in the persistent store. |
Modifier and Type | Method and Description |
---|---|
Collection<GroupProperty> |
GroupPropertyDaoBase.create(Collection<GroupProperty> entities) |
Collection<GroupProperty> |
GroupPropertyDao.create(Collection<GroupProperty> entities)
Creates a new instance of GroupProperty and adds from the passed in
entities
collection |
Collection<GroupProperty> |
GroupPropertyDaoBase.create(int transform,
Collection<GroupProperty> entities) |
Collection<?> |
GroupPropertyDao.create(int transform,
Collection<GroupProperty> entities)
Does the same thing as
GroupPropertyDao.create(com.communote.server.model.user.group.GroupProperty)
with an additional flag called transform . |
void |
GroupPropertyDaoBase.remove(Collection<GroupProperty> entities) |
void |
GroupPropertyDao.remove(Collection<GroupProperty> entities)
Removes all entities in the given
entities |
void |
GroupPropertyDaoBase.update(Collection<GroupProperty> entities) |
void |
GroupPropertyDao.update(Collection<GroupProperty> entities)
Updates all instances in the
entities collection in the persistent store. |
Copyright © 2019 Communote team. All rights reserved.