Package | Description |
---|---|
com.communote.server.api.core.property | |
com.communote.server.core.property | |
com.communote.server.model.property | |
com.communote.server.persistence.property |
Modifier and Type | Method and Description |
---|---|
BinaryProperty |
PropertyManagement.getBinaryProperty(String keyGroup,
String key)
Get a binary property not bound to any context
|
BinaryProperty |
PropertyManagement.setBinaryProperty(String keyGroup,
String key,
byte[] value)
Set a binary property.
|
Modifier and Type | Method and Description |
---|---|
BinaryProperty |
PropertyManagementImpl.getBinaryProperty(String keyGroup,
String key) |
protected BinaryProperty |
BinaryPropertyAccessor.handleCreateNewProperty(Propertyable object)
Create a new property and associate it with the object
|
protected BinaryProperty |
BinaryPropertyAccessor.handleGetObjectPropertyUnfiltered(Propertyable object,
String keyGroup,
String key)
Get an object property for the given group and key
|
BinaryProperty |
PropertyManagementImpl.setBinaryProperty(String keyGroup,
String key,
byte[] value) |
Modifier and Type | Method and Description |
---|---|
protected void |
BinaryPropertyAccessor.setPropertyValue(BinaryProperty property,
byte[] value) |
Modifier and Type | Method and Description |
---|---|
static BinaryProperty |
BinaryProperty.Factory.newInstance()
Constructs a new instance of
BinaryProperty . |
static BinaryProperty |
BinaryProperty.Factory.newInstance(byte[] propertyValue,
String keyGroup,
String propertyKey,
Date lastModificationDate)
Constructs a new instance of
BinaryProperty , taking all possible properties
(except the identifier(s))as arguments. |
Modifier and Type | Method and Description |
---|---|
BinaryProperty |
BinaryPropertyDaoBase.create(BinaryProperty binaryProperty) |
BinaryProperty |
BinaryPropertyDao.create(BinaryProperty binaryProperty)
Creates an instance of BinaryProperty and adds it to the persistent store.
|
BinaryProperty |
BinaryPropertyDaoBase.load(Long id) |
BinaryProperty |
BinaryPropertyDao.load(Long id)
Loads an instance of BinaryProperty from the persistent store.
|
Modifier and Type | Method and Description |
---|---|
Collection<BinaryProperty> |
BinaryPropertyDaoBase.create(Collection<BinaryProperty> entities) |
Collection<BinaryProperty> |
BinaryPropertyDao.create(Collection<BinaryProperty> entities)
Creates a new instance of BinaryProperty and adds from the passed in
entities
collection |
Collection<BinaryProperty> |
BinaryPropertyDaoBase.create(int transform,
Collection<BinaryProperty> entities) |
Collection<BinaryProperty> |
BinaryPropertyDaoBase.loadAll() |
Collection<BinaryProperty> |
BinaryPropertyDao.loadAll()
Loads all entities of type
BinaryProperty . |
Modifier and Type | Method and Description |
---|---|
BinaryProperty |
BinaryPropertyDaoBase.create(BinaryProperty binaryProperty) |
BinaryProperty |
BinaryPropertyDao.create(BinaryProperty binaryProperty)
Creates an instance of BinaryProperty and adds it to the persistent store.
|
Object |
BinaryPropertyDaoBase.create(int transform,
BinaryProperty binaryProperty) |
Object |
BinaryPropertyDao.create(int transform,
BinaryProperty binaryProperty)
Does the same thing as
BinaryPropertyDao.create(BinaryProperty) with an additional flag called
transform . |
void |
BinaryPropertyDaoBase.evict(BinaryProperty entity)
Evicts (removes) the entity from the hibernate cache
|
void |
BinaryPropertyDao.evict(BinaryProperty entity)
Evicts (removes) the entity from the hibernate cache
|
void |
BinaryPropertyDaoBase.remove(BinaryProperty binaryProperty) |
void |
BinaryPropertyDao.remove(BinaryProperty binaryProperty)
Removes the instance of BinaryProperty from the persistent store.
|
protected Object |
BinaryPropertyDaoBase.transformEntity(int transform,
BinaryProperty 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
BinaryPropertyDao , please note that the BinaryPropertyDao.TRANSFORM_NONE constant denotes
no transformation, so the entity itself will be returned. |
void |
BinaryPropertyDaoBase.update(BinaryProperty binaryProperty) |
void |
BinaryPropertyDao.update(BinaryProperty binaryProperty)
Updates the
binaryProperty instance in the persistent store. |
Modifier and Type | Method and Description |
---|---|
Collection<BinaryProperty> |
BinaryPropertyDaoBase.create(Collection<BinaryProperty> entities) |
Collection<BinaryProperty> |
BinaryPropertyDao.create(Collection<BinaryProperty> entities)
Creates a new instance of BinaryProperty and adds from the passed in
entities
collection |
Collection<BinaryProperty> |
BinaryPropertyDaoBase.create(int transform,
Collection<BinaryProperty> entities) |
Collection<?> |
BinaryPropertyDao.create(int transform,
Collection<BinaryProperty> entities)
Does the same thing as
BinaryPropertyDao.create(BinaryProperty) with an additional flag called
transform . |
void |
BinaryPropertyDaoBase.remove(Collection<BinaryProperty> entities) |
void |
BinaryPropertyDao.remove(Collection<BinaryProperty> entities)
Removes all entities in the given
entities |
void |
BinaryPropertyDaoBase.update(Collection<BinaryProperty> entities) |
void |
BinaryPropertyDao.update(Collection<BinaryProperty> entities)
Updates all instances in the
entities collection in the persistent store. |
Copyright © 2019 Communote team. All rights reserved.