Package net.ontopia.persistence.proxy
Class RDBMSMapping
- java.lang.Object
-
- net.ontopia.persistence.proxy.RDBMSMapping
-
- All Implemented Interfaces:
ObjectRelationalMappingIF
public class RDBMSMapping extends Object implements ObjectRelationalMappingIF
INTERNAL: An object relational mapping wrapper class used by the RDBMS proxy implementation.
-
-
Field Summary
Fields Modifier and Type Field Description protected Map<Object,ClassInfoIF>
class_infos
protected ObjectRelationalMapping
mapping
-
Constructor Summary
Constructors Constructor Description RDBMSMapping(ObjectRelationalMapping mapping)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ClassInfoIF
getClassInfo(Class<?> type)
INTERNAL: Get the class info by object type.ObjectRelationalMapping
getMapping()
INTERNAL: Returns the object relational mapping instance wrapped by this class.boolean
isDeclared(Class<?> type)
INTERNAL: Returns true if the object type has a class descriptor.
-
-
-
Field Detail
-
mapping
protected ObjectRelationalMapping mapping
-
class_infos
protected Map<Object,ClassInfoIF> class_infos
-
-
Constructor Detail
-
RDBMSMapping
public RDBMSMapping(ObjectRelationalMapping mapping)
-
-
Method Detail
-
getMapping
public ObjectRelationalMapping getMapping()
INTERNAL: Returns the object relational mapping instance wrapped by this class.
-
getClassInfo
public ClassInfoIF getClassInfo(Class<?> type)
Description copied from interface:ObjectRelationalMappingIF
INTERNAL: Get the class info by object type.- Specified by:
getClassInfo
in interfaceObjectRelationalMappingIF
-
isDeclared
public boolean isDeclared(Class<?> type)
Description copied from interface:ObjectRelationalMappingIF
INTERNAL: Returns true if the object type has a class descriptor.- Specified by:
isDeclared
in interfaceObjectRelationalMappingIF
-
-