Package | Description |
---|---|
com.communote.server.core.property | |
com.communote.server.model.blog | |
com.communote.server.persistence.blog |
Modifier and Type | Method and Description |
---|---|
protected BlogProperty |
TopicPropertyAccessor.handleCreateNewProperty(Blog blog)
Create a new property and associate it with the object
|
Modifier and Type | Method and Description |
---|---|
static BlogProperty |
BlogProperty.Factory.newInstance()
Constructs a new instance of
BlogProperty . |
static BlogProperty |
BlogProperty.Factory.newInstance(String propertyValue,
String keyGroup,
String propertyKey,
Date lastModificationDate)
Constructs a new instance of
BlogProperty , taking all possible properties (except
the identifier(s))as arguments. |
Modifier and Type | Method and Description |
---|---|
Set<BlogProperty> |
Blog.getProperties() |
Modifier and Type | Method and Description |
---|---|
static Blog |
Blog.Factory.newInstance(String title,
String description,
Timestamp creationDate,
String nameIdentifier,
Timestamp lastModificationDate,
Timestamp crawlLastModificationDate,
boolean allCanRead,
boolean allCanWrite,
boolean publicAccess,
boolean createSystemNotes,
boolean toplevelTopic,
Set<Tag> tags,
GlobalId globalId,
Set<BlogMember> members,
Set<ExternalObject> externalObjects,
Set<BlogProperty> properties,
Set<Blog> parents,
Set<Blog> children)
Constructs a new instance of
Blog , taking all possible properties (except the
identifier(s))as arguments. |
void |
Blog.setProperties(Set<BlogProperty> properties) |
Modifier and Type | Method and Description |
---|---|
BlogProperty |
BlogPropertyDaoBase.create(BlogProperty blogProperty) |
BlogProperty |
BlogPropertyDao.create(BlogProperty blogProperty)
Creates an instance of com.communote.server.persistence.blog.BlogProperty and adds it to the
persistent store.
|
BlogProperty |
BlogPropertyDaoBase.load(Long id) |
BlogProperty |
BlogPropertyDao.load(Long id)
Loads an instance of com.communote.server.persistence.blog.BlogProperty from the persistent
store.
|
Modifier and Type | Method and Description |
---|---|
Collection<BlogProperty> |
BlogPropertyDaoBase.create(Collection<BlogProperty> entities) |
Collection<BlogProperty> |
BlogPropertyDao.create(Collection<BlogProperty> entities)
Creates a new instance of com.communote.server.persistence.blog.BlogProperty and adds from
the passed in
entities collection |
Collection<BlogProperty> |
BlogPropertyDaoBase.create(int transform,
Collection<BlogProperty> entities) |
Collection<BlogProperty> |
BlogPropertyDaoBase.loadAll() |
Collection<BlogProperty> |
BlogPropertyDao.loadAll()
Loads all entities of type
BlogProperty . |
Modifier and Type | Method and Description |
---|---|
BlogProperty |
BlogPropertyDaoBase.create(BlogProperty blogProperty) |
BlogProperty |
BlogPropertyDao.create(BlogProperty blogProperty)
Creates an instance of com.communote.server.persistence.blog.BlogProperty and adds it to the
persistent store.
|
Object |
BlogPropertyDaoBase.create(int transform,
BlogProperty blogProperty) |
Object |
BlogPropertyDao.create(int transform,
BlogProperty blogProperty)
Does the same thing as
BlogPropertyDao.create(com.communote.server.model.blog.BlogProperty) with an
additional flag called transform . |
void |
BlogPropertyDaoBase.evict(BlogProperty entity)
Evicts (removes) the entity from the hibernate cache
|
void |
BlogPropertyDao.evict(BlogProperty entity)
Evicts (removes) the entity from the hibernate cache
|
void |
BlogPropertyDaoBase.remove(BlogProperty blogProperty) |
void |
BlogPropertyDao.remove(BlogProperty blogProperty)
Removes the instance of com.communote.server.persistence.blog.BlogProperty from the
persistent store.
|
protected Object |
BlogPropertyDaoBase.transformEntity(int transform,
BlogProperty 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
BlogPropertyDao , please note that the BlogPropertyDao.TRANSFORM_NONE constant denotes
no transformation, so the entity itself will be returned. |
void |
BlogPropertyDaoBase.update(BlogProperty blogProperty) |
void |
BlogPropertyDao.update(BlogProperty blogProperty)
Updates the
blogProperty instance in the persistent store. |
Modifier and Type | Method and Description |
---|---|
Collection<BlogProperty> |
BlogPropertyDaoBase.create(Collection<BlogProperty> entities) |
Collection<BlogProperty> |
BlogPropertyDao.create(Collection<BlogProperty> entities)
Creates a new instance of com.communote.server.persistence.blog.BlogProperty and adds from
the passed in
entities collection |
Collection<BlogProperty> |
BlogPropertyDaoBase.create(int transform,
Collection<BlogProperty> entities) |
Collection<?> |
BlogPropertyDao.create(int transform,
Collection<BlogProperty> entities)
Does the same thing as
BlogPropertyDao.create(com.communote.server.model.blog.BlogProperty) with an
additional flag called transform . |
void |
BlogPropertyDaoBase.remove(Collection<BlogProperty> entities) |
void |
BlogPropertyDao.remove(Collection<BlogProperty> entities)
Removes all entities in the given
entities |
void |
BlogPropertyDaoBase.update(Collection<BlogProperty> entities) |
void |
BlogPropertyDao.update(Collection<BlogProperty> entities)
Updates all instances in the
entities collection in the persistent store. |
Copyright © 2019 Communote team. All rights reserved.