Modifier and Type | Class and Description |
---|---|
class |
PropertyAccessor<O extends Propertyable,P extends Property,V>
The Property Accessor provides means for setting and retrieving properties.
|
Modifier and Type | Class and Description |
---|---|
class |
AttachmentProperty |
Modifier and Type | Class and Description |
---|---|
class |
BlogProperty |
Modifier and Type | Class and Description |
---|---|
class |
ExternalObjectProperty |
Modifier and Type | Class and Description |
---|---|
class |
NoteProperty |
Modifier and Type | Class and Description |
---|---|
class |
BinaryProperty
Property which holds binary data.
|
class |
GlobalProperty |
class |
PluginProperty |
class |
StringProperty |
Modifier and Type | Class and Description |
---|---|
class |
UserNoteProperty |
class |
UserProperty |
Modifier and Type | Class and Description |
---|---|
class |
GroupProperty
A property that is associated with a group.
|
Modifier and Type | Method and Description |
---|---|
Property |
PropertyDaoBase.create(Property property) |
Property |
PropertyDao.create(Property property)
Creates an instance of com.communote.server.persistence.property.Property and adds it to the
persistent store.
|
Property |
PropertyDaoBase.load(Long id) |
Property |
PropertyDao.load(Long id)
Loads an instance of com.communote.server.persistence.property.Property from the persistent
store.
|
Modifier and Type | Method and Description |
---|---|
Collection<Property> |
PropertyDaoBase.create(Collection<Property> entities) |
Collection<Property> |
PropertyDao.create(Collection<Property> entities)
Creates a new instance of com.communote.server.persistence.property.Property and adds from
the passed in
entities collection |
Collection<Property> |
PropertyDaoBase.create(int transform,
Collection<Property> entities) |
Collection<Property> |
PropertyDaoBase.loadAll() |
Collection<Property> |
PropertyDao.loadAll()
Loads all entities of type
Property . |
Modifier and Type | Method and Description |
---|---|
Object |
PropertyDaoBase.create(int transform,
Property property) |
Object |
PropertyDao.create(int transform,
Property property)
Does the same thing as
PropertyDao.create(com.communote.server.model.property.Property) with an
additional flag called transform . |
Property |
PropertyDaoBase.create(Property property) |
Property |
PropertyDao.create(Property property)
Creates an instance of com.communote.server.persistence.property.Property and adds it to the
persistent store.
|
void |
PropertyDaoBase.evict(Property entity)
Evicts (removes) the entity from the hibernate cache
|
void |
PropertyDao.evict(Property entity)
Evicts (removes) the entity from the hibernate cache
|
void |
PropertyDaoBase.remove(Property property) |
void |
PropertyDao.remove(Property property)
Removes the instance of com.communote.server.persistence.property.Property from the
persistent store.
|
protected Object |
PropertyDaoBase.transformEntity(int transform,
Property 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
PropertyDao , please note that the PropertyDao.TRANSFORM_NONE constant denotes no
transformation, so the entity itself will be returned. |
void |
PropertyDaoBase.update(Property property) |
void |
PropertyDao.update(Property property)
Updates the
property instance in the persistent store. |
Modifier and Type | Method and Description |
---|---|
Collection<Property> |
PropertyDaoBase.create(Collection<Property> entities) |
Collection<Property> |
PropertyDao.create(Collection<Property> entities)
Creates a new instance of com.communote.server.persistence.property.Property and adds from
the passed in
entities collection |
Collection<Property> |
PropertyDaoBase.create(int transform,
Collection<Property> entities) |
Collection<?> |
PropertyDao.create(int transform,
Collection<Property> entities)
Does the same thing as
PropertyDao.create(com.communote.server.model.property.Property) with an
additional flag called transform . |
void |
PropertyDaoBase.remove(Collection<Property> entities) |
void |
PropertyDao.remove(Collection<Property> entities)
Removes all entities in the given
entities |
void |
PropertyDaoBase.update(Collection<Property> entities) |
void |
PropertyDao.update(Collection<Property> entities)
Updates all instances in the
entities collection in the persistent store. |
Copyright © 2019 Communote team. All rights reserved.