public class SimplePersistenceFactory extends Object implements PersistenceFactory
Modifier and Type | Method and Description |
---|---|
Object |
createFromState(PersistentState state)
Create an instance of the object represented by the state.
|
DynStruct |
getDefinition(String name)
Returns the associated definition to the java class name
|
List |
getDefinitions()
Return a List of the definition managed by this factory where the key is
className and value is definition |
String |
getDomainName()
Returns the domain name of the objects persisted by this factory.
|
String |
getDomainURL()
Returns the domain URL to use for the schema.
|
Class |
getManagedClass(Object object)
Return the class or interface the factory asociate to
the object.
|
Class |
getManagedClass(PersistentState state)
Return the class or interface the factory asociate to
the object.
|
Class |
getManagedClass(String name)
Return the class or interface the factory asociate to
the java class name.
|
List |
getManagedClasses()
Return the list of classes or interfaces managed by this
factory.
|
String |
getManagedClassName(Object object)
Return the name class or interface the factory asociate to
the object.
|
void |
loadFromState(PersistentState state,
Object object)
Load a instance of
classToUse from state data. |
boolean |
manages(Class theClass)
Informs if
theClass is managed by this factory. |
boolean |
manages(Object object)
Informs if
object is managed by this factory. |
boolean |
manages(PersistentState state)
Informs if this factory can recreate the object represented by
state . |
void |
saveToState(PersistentState state,
Object obj)
Fill
state with data to persist of obj . |
String |
toString() |
public DynStruct getDefinition(String name)
PersistenceFactory
getDefinition
in interface PersistenceFactory
name
- of a java Classpublic List getDefinitions()
PersistenceFactory
className
and value is definition
getDefinitions
in interface PersistenceFactory
public String getDomainName()
PersistenceFactory
getDomainName
in interface PersistenceFactory
public String getDomainURL()
PersistenceFactory
getDomainURL
in interface PersistenceFactory
public Class getManagedClass(Object object)
PersistenceFactory
getManagedClass
in interface PersistenceFactory
public String getManagedClassName(Object object)
PersistenceFactory
getManagedClassName
in interface PersistenceFactory
public Class getManagedClass(PersistentState state)
PersistenceFactory
getManagedClass
in interface PersistenceFactory
public Class getManagedClass(String name)
PersistenceFactory
getManagedClass
in interface PersistenceFactory
public List getManagedClasses()
PersistenceFactory
getManagedClasses
in interface PersistenceFactory
public void loadFromState(PersistentState state, Object object) throws PersistenceException
PersistenceFactory
classToUse
from state
data.loadFromState
in interface PersistenceFactory
PersistenceException
public boolean manages(Object object)
PersistenceFactory
object
is managed by this factory.manages
in interface PersistenceFactory
public boolean manages(Class theClass)
PersistenceFactory
theClass
is managed by this factory.manages
in interface PersistenceFactory
public boolean manages(PersistentState state)
PersistenceFactory
state
.manages
in interface PersistenceFactory
public void saveToState(PersistentState state, Object obj) throws PersistenceException
PersistenceFactory
state
with data to persist of obj
.saveToState
in interface PersistenceFactory
PersistenceException
public Object createFromState(PersistentState state) throws PersistenceException
PersistenceFactory
PersistenceFactory.loadFromState(PersistentState, Object)
only create
the object.createFromState
in interface PersistenceFactory
PersistenceException