Package | Description |
---|---|
com.communote.server.core.property | |
com.communote.server.model.note | |
com.communote.server.persistence.blog |
Modifier and Type | Method and Description |
---|---|
protected NoteProperty |
NotePropertyAccessor.handleCreateNewProperty(Note note)
Create a new property and associate it with the object
|
Modifier and Type | Method and Description |
---|---|
static NoteProperty |
NoteProperty.Factory.newInstance()
Constructs a new instance of
NoteProperty . |
static NoteProperty |
NoteProperty.Factory.newInstance(String propertyValue,
String keyGroup,
String propertyKey,
Date lastModificationDate)
Constructs a new instance of
NoteProperty , taking all possible properties (except
the identifier(s))as arguments. |
Modifier and Type | Method and Description |
---|---|
Set<NoteProperty> |
Note.getProperties() |
Modifier and Type | Method and Description |
---|---|
static Note |
Note.Factory.newInstance(Timestamp creationDate,
Timestamp lastModificationDate,
Timestamp lastDiscussionNoteCreationDate,
Timestamp crawlLastModificationDate,
NoteCreationSource creationSource,
boolean direct,
NoteStatus status,
Long version,
String discussionPath,
Long discussionId,
boolean mentionTopicReaders,
boolean mentionTopicAuthors,
boolean mentionTopicManagers,
boolean mentionDiscussionAuthors,
GlobalId globalId,
Blog blog,
Set<User> favoriteUsers,
Set<Note> children,
Note parent,
Set<Note> versionOf,
Note origin,
Set<Blog> crosspostBlogs,
Set<GlobalId> followableItems,
Set<NoteProperty> properties,
Set<User> directUsers,
User user,
Set<Tag> tags,
Set<User> usersToBeNotified,
Set<Attachment> attachments,
Content content)
Constructs a new instance of
Note , taking all possible properties (except the
identifier(s))as arguments. |
void |
Note.setProperties(Set<NoteProperty> properties) |
Modifier and Type | Method and Description |
---|---|
NoteProperty |
NotePropertyDaoBase.create(NoteProperty noteProperty) |
NoteProperty |
NotePropertyDao.create(NoteProperty noteProperty)
Creates an instance of com.communote.server.persistence.blog.NoteProperty and adds it to the
persistent store.
|
NoteProperty |
NotePropertyDaoBase.load(Long id) |
NoteProperty |
NotePropertyDao.load(Long id)
Loads an instance of com.communote.server.persistence.blog.NoteProperty from the persistent
store.
|
Modifier and Type | Method and Description |
---|---|
Collection<NoteProperty> |
NotePropertyDaoBase.create(Collection<NoteProperty> entities) |
Collection<NoteProperty> |
NotePropertyDao.create(Collection<NoteProperty> entities)
Creates a new instance of com.communote.server.persistence.blog.NoteProperty and adds from
the passed in
entities collection |
Collection<NoteProperty> |
NotePropertyDaoBase.create(int transform,
Collection<NoteProperty> entities) |
Collection<NoteProperty> |
NotePropertyDaoBase.loadAll() |
Collection<NoteProperty> |
NotePropertyDao.loadAll()
Loads all entities of type
NoteProperty . |
Modifier and Type | Method and Description |
---|---|
Object |
NotePropertyDaoBase.create(int transform,
NoteProperty noteProperty) |
Object |
NotePropertyDao.create(int transform,
NoteProperty noteProperty)
Does the same thing as
NotePropertyDao.create(com.communote.server.model.note.NoteProperty) with an
additional flag called transform . |
NoteProperty |
NotePropertyDaoBase.create(NoteProperty noteProperty) |
NoteProperty |
NotePropertyDao.create(NoteProperty noteProperty)
Creates an instance of com.communote.server.persistence.blog.NoteProperty and adds it to the
persistent store.
|
void |
NotePropertyDaoBase.evict(NoteProperty entity)
Evicts (removes) the entity from the hibernate cache
|
void |
NotePropertyDao.evict(NoteProperty entity)
Evicts (removes) the entity from the hibernate cache
|
void |
NotePropertyDaoBase.remove(NoteProperty noteProperty) |
void |
NotePropertyDao.remove(NoteProperty noteProperty)
Removes the instance of com.communote.server.persistence.blog.NoteProperty from the
persistent store.
|
protected Object |
NotePropertyDaoBase.transformEntity(int transform,
NoteProperty 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
NotePropertyDao , please note that the NotePropertyDao.TRANSFORM_NONE constant denotes
no transformation, so the entity itself will be returned. |
void |
NotePropertyDaoBase.update(NoteProperty noteProperty) |
void |
NotePropertyDao.update(NoteProperty noteProperty)
Updates the
noteProperty instance in the persistent store. |
Modifier and Type | Method and Description |
---|---|
Collection<NoteProperty> |
NotePropertyDaoBase.create(Collection<NoteProperty> entities) |
Collection<NoteProperty> |
NotePropertyDao.create(Collection<NoteProperty> entities)
Creates a new instance of com.communote.server.persistence.blog.NoteProperty and adds from
the passed in
entities collection |
Collection<NoteProperty> |
NotePropertyDaoBase.create(int transform,
Collection<NoteProperty> entities) |
Collection<?> |
NotePropertyDao.create(int transform,
Collection<NoteProperty> entities)
Does the same thing as
NotePropertyDao.create(com.communote.server.model.note.NoteProperty) with an
additional flag called transform . |
void |
NotePropertyDaoBase.remove(Collection<NoteProperty> entities) |
void |
NotePropertyDao.remove(Collection<NoteProperty> entities)
Removes all entities in the given
entities |
void |
NotePropertyDaoBase.update(Collection<NoteProperty> entities) |
void |
NotePropertyDao.update(Collection<NoteProperty> entities)
Updates all instances in the
entities collection in the persistent store. |
Copyright © 2019 Communote team. All rights reserved.