Package | Description |
---|---|
com.communote.server.model.property | |
com.communote.server.persistence.property |
Modifier and Type | Method and Description |
---|---|
static GlobalProperty |
GlobalProperty.Factory.newInstance()
Constructs a new instance of
GlobalProperty . |
static GlobalProperty |
GlobalProperty.Factory.newInstance(String propertyValue,
String keyGroup,
String propertyKey,
Date lastModificationDate)
Constructs a new instance of
GlobalProperty , taking all possible properties
(except the identifier(s))as arguments. |
Modifier and Type | Method and Description |
---|---|
GlobalProperty |
GlobalPropertyDaoBase.create(GlobalProperty globalProperty) |
GlobalProperty |
GlobalPropertyDao.create(GlobalProperty globalProperty)
Creates an instance of com.communote.server.persistence.property.GlobalProperty and adds it
to the persistent store.
|
GlobalProperty |
GlobalPropertyDaoBase.load(Long id) |
GlobalProperty |
GlobalPropertyDao.load(Long id)
Loads an instance of com.communote.server.persistence.property.GlobalProperty from the
persistent store.
|
Modifier and Type | Method and Description |
---|---|
Collection<GlobalProperty> |
GlobalPropertyDaoBase.create(Collection<GlobalProperty> entities) |
Collection<GlobalProperty> |
GlobalPropertyDao.create(Collection<GlobalProperty> entities)
Creates a new instance of com.communote.server.persistence.property.GlobalProperty and adds
from the passed in
entities collection |
Collection<GlobalProperty> |
GlobalPropertyDaoBase.create(int transform,
Collection<GlobalProperty> entities) |
Collection<GlobalProperty> |
GlobalPropertyDaoBase.loadAll() |
Collection<GlobalProperty> |
GlobalPropertyDao.loadAll()
Loads all entities of type
GlobalProperty . |
Modifier and Type | Method and Description |
---|---|
GlobalProperty |
GlobalPropertyDaoBase.create(GlobalProperty globalProperty) |
GlobalProperty |
GlobalPropertyDao.create(GlobalProperty globalProperty)
Creates an instance of com.communote.server.persistence.property.GlobalProperty and adds it
to the persistent store.
|
Object |
GlobalPropertyDaoBase.create(int transform,
GlobalProperty globalProperty) |
Object |
GlobalPropertyDao.create(int transform,
GlobalProperty globalProperty)
Does the same thing as
GlobalPropertyDao.create(com.communote.server.model.property.GlobalProperty)
with an additional flag called transform . |
void |
GlobalPropertyDaoBase.evict(GlobalProperty entity)
Evicts (removes) the entity from the hibernate cache
|
void |
GlobalPropertyDao.evict(GlobalProperty entity)
Evicts (removes) the entity from the hibernate cache
|
void |
GlobalPropertyDaoBase.remove(GlobalProperty globalProperty) |
void |
GlobalPropertyDao.remove(GlobalProperty globalProperty)
Removes the instance of com.communote.server.persistence.property.GlobalProperty from the
persistent store.
|
protected Object |
GlobalPropertyDaoBase.transformEntity(int transform,
GlobalProperty 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
GlobalPropertyDao , please note that the GlobalPropertyDao.TRANSFORM_NONE constant denotes
no transformation, so the entity itself will be returned. |
void |
GlobalPropertyDaoBase.update(GlobalProperty globalProperty) |
void |
GlobalPropertyDao.update(GlobalProperty globalProperty)
Updates the
globalProperty instance in the persistent store. |
Modifier and Type | Method and Description |
---|---|
Collection<GlobalProperty> |
GlobalPropertyDaoBase.create(Collection<GlobalProperty> entities) |
Collection<GlobalProperty> |
GlobalPropertyDao.create(Collection<GlobalProperty> entities)
Creates a new instance of com.communote.server.persistence.property.GlobalProperty and adds
from the passed in
entities collection |
Collection<GlobalProperty> |
GlobalPropertyDaoBase.create(int transform,
Collection<GlobalProperty> entities) |
Collection<?> |
GlobalPropertyDao.create(int transform,
Collection<GlobalProperty> entities)
Does the same thing as
GlobalPropertyDao.create(com.communote.server.model.property.GlobalProperty)
with an additional flag called transform . |
void |
GlobalPropertyDaoBase.remove(Collection<GlobalProperty> entities) |
void |
GlobalPropertyDao.remove(Collection<GlobalProperty> entities)
Removes all entities in the given
entities |
void |
GlobalPropertyDaoBase.update(Collection<GlobalProperty> entities) |
void |
GlobalPropertyDao.update(Collection<GlobalProperty> entities)
Updates all instances in the
entities collection in the persistent store. |
Copyright © 2019 Communote team. All rights reserved.