Modifier and Type | Method and Description |
---|---|
static boolean |
GroupUtils.isChild(Group group,
CommunoteEntity child)
Checks if a group contains an entity either directly or indirectly, which is the entity is
contained in one of the transitively resolved child groups of the group .
|
Modifier and Type | Method and Description |
---|---|
static String |
CommunoteEntityHelper.getDisplayName(CommunoteEntity entity)
Returns a human readable name for the entity.
|
Modifier and Type | Method and Description |
---|---|
CommunoteEntity |
BlogMember.getMemberEntity() |
Modifier and Type | Method and Description |
---|---|
static ExternalBlogMember |
ExternalBlogMember.Factory.newInstance(BlogRole role,
Blog blog,
CommunoteEntity kenmeiEntity)
Constructs a new instance of
ExternalBlogMember ,
taking all required and/or read-only properties as arguments. |
static BlogMember |
BlogMember.Factory.newInstance(BlogRole role,
Blog blog,
CommunoteEntity kenmeiEntity)
Constructs a new instance of
BlogMember , taking
all possible properties (except the identifier(s))as arguments. |
static ExternalBlogMember |
ExternalBlogMember.Factory.newInstance(String externalSystemId,
BlogRole role,
Blog blog,
CommunoteEntity kenmeiEntity)
Constructs a new instance of
ExternalBlogMember ,
taking all possible properties (except the identifier(s))as arguments. |
void |
BlogMember.setMemberEntity(CommunoteEntity entity) |
Modifier and Type | Class and Description |
---|---|
class |
User
A user.
|
Modifier and Type | Class and Description |
---|---|
class |
ExternalUserGroup |
class |
ExternalUserGroupImpl |
class |
Group
A group which can contain users or other groups.
|
Modifier and Type | Method and Description |
---|---|
Set<CommunoteEntity> |
Group.getGroupMembers() |
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.setGroupMembers(Set<CommunoteEntity> groupMembers) |
Modifier and Type | Method and Description |
---|---|
CommunoteEntity |
CommunoteEntityDaoBase.create(CommunoteEntity kenmeiEntity) |
CommunoteEntity |
CommunoteEntityDao.create(CommunoteEntity kenmeiEntity)
Creates an instance of com.communote.server.persistence.user.KenmeiEntity and adds it to the
persistent store.
|
protected CommunoteEntity |
CommunoteEntityDaoImpl.handleLoadWithImplementation(Long id)
Performs the core logic for
CommunoteEntityDaoBase.loadWithImplementation(Long) |
protected abstract CommunoteEntity |
CommunoteEntityDaoBase.handleLoadWithImplementation(Long id)
Performs the core logic for
CommunoteEntityDaoBase.loadWithImplementation(Long) |
CommunoteEntity |
CommunoteEntityDaoBase.load(Long id) |
CommunoteEntity |
CommunoteEntityDao.load(Long id)
Loads an instance of com.communote.server.persistence.user.KenmeiEntity from the persistent
store.
|
CommunoteEntity |
CommunoteEntityDaoBase.loadWithImplementation(Long id) |
CommunoteEntity |
CommunoteEntityDao.loadWithImplementation(Long id)
Load the entity and deproxy it
|
Modifier and Type | Method and Description |
---|---|
Collection<CommunoteEntity> |
CommunoteEntityDaoBase.create(Collection<CommunoteEntity> entities) |
Collection<CommunoteEntity> |
CommunoteEntityDao.create(Collection<CommunoteEntity> entities)
Creates a new instance of com.communote.server.persistence.user.KenmeiEntity and adds from
the passed in
entities collection |
Collection<CommunoteEntity> |
CommunoteEntityDaoBase.create(int transform,
Collection<CommunoteEntity> entities) |
Collection<CommunoteEntity> |
CommunoteEntityDaoBase.loadAll() |
Collection<CommunoteEntity> |
CommunoteEntityDao.loadAll()
Loads all entities of type
CommunoteEntity . |
Modifier and Type | Method and Description |
---|---|
CommunoteEntity |
CommunoteEntityDaoBase.create(CommunoteEntity kenmeiEntity) |
CommunoteEntity |
CommunoteEntityDao.create(CommunoteEntity kenmeiEntity)
Creates an instance of com.communote.server.persistence.user.KenmeiEntity and adds it to the
persistent store.
|
Object |
CommunoteEntityDaoBase.create(int transform,
CommunoteEntity kenmeiEntity) |
Object |
CommunoteEntityDao.create(int transform,
CommunoteEntity kenmeiEntity)
Does the same thing as
CommunoteEntityDao.create(com.communote.server.model.user.CommunoteEntity) with
an additional flag called transform . |
void |
CommunoteEntityDaoBase.evict(CommunoteEntity entity)
Evicts (removes) the entity from the hibernate cache
|
void |
CommunoteEntityDao.evict(CommunoteEntity entity)
Evicts (removes) the entity from the hibernate cache
|
void |
CommunoteEntityDaoBase.remove(CommunoteEntity kenmeiEntity) |
void |
CommunoteEntityDao.remove(CommunoteEntity kenmeiEntity)
Removes the instance of com.communote.server.persistence.user.KenmeiEntity from the
persistent store.
|
protected Object |
CommunoteEntityDaoBase.transformEntity(int transform,
CommunoteEntity 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.CommunoteEntityDao , please note that the
CommunoteEntityDao.TRANSFORM_NONE constant denotes no transformation, so the entity itself will be
returned. |
void |
CommunoteEntityDaoBase.update(CommunoteEntity kenmeiEntity) |
void |
CommunoteEntityDao.update(CommunoteEntity kenmeiEntity)
Updates the
kenmeiEntity instance in the persistent store. |
Modifier and Type | Method and Description |
---|---|
Collection<CommunoteEntity> |
CommunoteEntityDaoBase.create(Collection<CommunoteEntity> entities) |
Collection<CommunoteEntity> |
CommunoteEntityDao.create(Collection<CommunoteEntity> entities)
Creates a new instance of com.communote.server.persistence.user.KenmeiEntity and adds from
the passed in
entities collection |
Collection<CommunoteEntity> |
CommunoteEntityDaoBase.create(int transform,
Collection<CommunoteEntity> entities) |
Collection<?> |
CommunoteEntityDao.create(int transform,
Collection<CommunoteEntity> entities)
Does the same thing as
CommunoteEntityDao.create(com.communote.server.model.user.CommunoteEntity) with
an additional flag called transform . |
void |
CommunoteEntityDaoBase.remove(Collection<CommunoteEntity> entities) |
void |
CommunoteEntityDao.remove(Collection<CommunoteEntity> entities)
Removes all entities in the given
entities |
void |
CommunoteEntityDaoBase.update(Collection<CommunoteEntity> entities) |
void |
CommunoteEntityDao.update(Collection<CommunoteEntity> entities)
Updates all instances in the
entities collection in the persistent store. |
Copyright © 2019 Communote team. All rights reserved.