Class DsDbSchema
- java.lang.Object
-
- de.uplanet.lucy.server.usermanager.ds.DsDbSchema
-
@Scriptable public final class DsDbSchema extends Object
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static List<DsClass>getAllDerivedClasses(int p_iClass)Get a list of classes that are derived from the given class (contains the given class).static List<DsClass>getAllDerivedClasses(DsClass p_class)gets a list of classes that are derived from the class (contains the given class)static List<DsClass>getAllDerivedClasses(String p_strClassName)gets a list of classes that are derived from the class (contains the given class)static StringgetAttributeGuidForName(String p_strName)static StringgetAttributeNameForGuid(String p_strGuid)static DsClassgetDSClassDefinition(int p_iClassID)static DsClassgetDSClassDefinition(String p_strClass)static DsClassgetDSClassDefinitionByGuid(String p_strGuid)static Map<String,DsClass>getDSClassDefinitions()static booleanisArrayAttribute(String p_strGuid)checks if the given guid is an array attributestatic booleanisDerivedFrom(int p_iSuperClass, int p_iClass)Returnstrue, when the type is derived from the super type.static booleanisDerivedFrom(DsClass p_srcClass, DsClass p_dstClass)Returns true, when p_checkType is derived from the p_iSrcType.static booleanisDerivedFrom(String p_strSrcTypeName, String p_strDestTypeName)Returns true, when p_checkType is derived from the p_iSrcType.static booleanisDerivedFromContainer(int p_iClassId)return true if p_iClass is derived from a containerstatic booleanisDerivedFromContainer(DsClass p_class)return true if p_class is derived from a containerstatic booleanisDerivedFromContainer(String p_strClass)return true if p_strClass is derived from a containerstatic booleanisDerivedFromSet(int p_iClassId)Return true if p_class is derived from a set.static booleanisDerivedFromSet(DsClass p_class)true if p_class is derived from a setstatic booleanisDerivedFromSet(String p_strClass)Return true if p_strClass is derived from a set.static booleanisDerivedFromUser(int p_iClassId)Check if the given class is derived from the user class.static booleanisDerivedFromUser(DsClass p_class)Check if the given class is derived from the user class.static booleanisDerivedFromUser(String p_strClass)Check if the given class is derived from the user class.static booleanisNoContainer(int p_iClassID)true if p_class is not derived from a container or a setstatic booleanisNoContainer(DsClass p_class)true if p_class is not derived from a containerstatic booleanisNoContainer(String p_strClass)true if p_strClass is not derived from a container or a setstatic booleanisNoContainerOrSet(int p_iClassID)true if p_iClassID is not derived from a container or a setstatic booleanisNoContainerOrSet(DsClass p_class)true if p_class is not derived from a container or a setstatic booleanisNoContainerOrSet(String p_strClass)true if p_strClass is not derived from a container or a setstatic booleanisNoSet(int p_iClassID)true if p_class is not derived from a setstatic booleanisNoSet(DsClass p_class)true if p_class is not derived from a setstatic booleanisNoSet(String p_strClass)true if p_strClass is not derived from a setstatic booleanisTenantAttributeDefined()Is a attribute defined as tenant ID in this schema?static StringmapClassIdToClassKey(int p_iID)static intmapClassKeyToClassId(String p_strKey)static voidrefreshCache(de.uplanet.jdbc.JdbcConnection p_conn)reloads the cache.
-
-
-
Method Detail
-
refreshCache
public static void refreshCache(de.uplanet.jdbc.JdbcConnection p_conn) throws SQLExceptionreloads the cache.- Parameters:
p_conn- The database connection- Throws:
SQLException
-
getDSClassDefinition
public static DsClass getDSClassDefinition(int p_iClassID)
- Parameters:
p_iClassID- The pk value of the DSClass Table (LID)- Returns:
- The class with the given id (could be
null)
-
getDSClassDefinition
public static DsClass getDSClassDefinition(String p_strClass)
- Parameters:
p_strClass- The unique class name- Returns:
- The dsclass object or
nullif not found.
-
getDSClassDefinitionByGuid
public static DsClass getDSClassDefinitionByGuid(String p_strGuid)
- Parameters:
p_strGuid- The class guid- Returns:
- The dsclass object or
nullif not found.
-
getDSClassDefinitions
public static Map<String,DsClass> getDSClassDefinitions()
- Returns:
- An unmodifiable map of class definitions.
-
isDerivedFrom
public static boolean isDerivedFrom(int p_iSuperClass, int p_iClass)Returnstrue, when the type is derived from the super type.- Parameters:
p_iSuperClass- if not exists a DsRuntimeException is thrownp_iClass- if not exists false is returned- Returns:
trueif p_iDstType is derived from p_iSrcType.
-
getAllDerivedClasses
public static List<DsClass> getAllDerivedClasses(int p_iClass)
Get a list of classes that are derived from the given class (contains the given class).- Parameters:
p_iClass- the type of the class. If no class will be found for that id anDsRuntimeExceptionwill be thrown.- Returns:
- a list of derived classes, contains the src class.
-
getAllDerivedClasses
public static List<DsClass> getAllDerivedClasses(String p_strClassName)
gets a list of classes that are derived from the class (contains the given class)- Parameters:
p_strClassName- the type of the class. If no class will be found for that name anIllegalArgumentExceptionwill be thrown.- Returns:
- a list of derived classes, contains the src class.
-
getAllDerivedClasses
public static List<DsClass> getAllDerivedClasses(DsClass p_class)
gets a list of classes that are derived from the class (contains the given class)- Parameters:
p_class- the ds class.- Returns:
- a list of derived classes, contains the src class.
-
getAttributeNameForGuid
public static String getAttributeNameForGuid(String p_strGuid)
- Parameters:
p_strGuid- guid of the attribute (DSATTRIBUTE.STRGUID column)- Returns:
- name of the attribute given by the guid, or
nullif not found
-
getAttributeGuidForName
public static String getAttributeGuidForName(String p_strName)
- Parameters:
p_strName- name of the attribute (DSATTRIBUTE.STRNAME column)- Returns:
- name of the attribute given by the guid, or
nullif not found
-
isDerivedFrom
public static boolean isDerivedFrom(String p_strSrcTypeName, String p_strDestTypeName)
Returns true, when p_checkType is derived from the p_iSrcType.- Parameters:
p_strSrcTypeName- if null true is returned, if not exists aDsRuntimeExceptionis thrownp_strDestTypeName- if null or not exists then false is returned- Returns:
- true if p_strDstTypeName is derived type o p_strSrcTypeName
-
isDerivedFrom
public static boolean isDerivedFrom(DsClass p_srcClass, DsClass p_dstClass)
Returns true, when p_checkType is derived from the p_iSrcType.- Parameters:
p_srcClass- if null always true is returnedp_dstClass- if null always falseis returned- Returns:
- true
-
isDerivedFromSet
public static boolean isDerivedFromSet(int p_iClassId)
Return true if p_class is derived from a set.- Parameters:
p_iClassId- The class id- Returns:
- true the class is derived from a set
-
isDerivedFromSet
public static boolean isDerivedFromSet(String p_strClass)
Return true if p_strClass is derived from a set.- Parameters:
p_strClass- The class type name- Returns:
- true the p_strClass is derived from a set.
-
isDerivedFromSet
public static boolean isDerivedFromSet(DsClass p_class)
true if p_class is derived from a set- Parameters:
p_class- The class object- Returns:
- true if p_class is derived from a set.
-
isDerivedFromContainer
public static boolean isDerivedFromContainer(int p_iClassId)
return true if p_iClass is derived from a container- Parameters:
p_iClassId- The class id- Returns:
trueif derived from the container class
-
isDerivedFromContainer
public static boolean isDerivedFromContainer(String p_strClass)
return true if p_strClass is derived from a container- Parameters:
p_strClass- The class type name- Returns:
trueif derived from the container class
-
isDerivedFromContainer
public static boolean isDerivedFromContainer(DsClass p_class)
return true if p_class is derived from a container- Parameters:
p_class- The class object- Returns:
trueif derived from the container class
-
isDerivedFromUser
public static boolean isDerivedFromUser(int p_iClassId)
Check if the given class is derived from the user class.- Parameters:
p_iClassId- The integer class identifier.- Returns:
trueif the given class is derived from the user class, orfalseotherwise.
-
isDerivedFromUser
public static boolean isDerivedFromUser(String p_strClass)
Check if the given class is derived from the user class.- Parameters:
p_strClass- The class identifier.- Returns:
trueif the given class is derived from the user class, orfalseotherwise.
-
isDerivedFromUser
public static boolean isDerivedFromUser(DsClass p_class)
Check if the given class is derived from the user class.- Parameters:
p_class- The class object.- Returns:
trueif the given class is derived from the user class, orfalseotherwise.
-
isNoContainer
public static boolean isNoContainer(int p_iClassID)
true if p_class is not derived from a container or a set- Parameters:
p_iClassID- The class type id- Returns:
- true if not derived from a container.
-
isNoContainer
public static boolean isNoContainer(String p_strClass)
true if p_strClass is not derived from a container or a set- Parameters:
p_strClass- The class type name- Returns:
trueif not derived from a container
-
isNoContainer
public static boolean isNoContainer(DsClass p_class)
true if p_class is not derived from a container- Parameters:
p_class- The class object- Returns:
- ture if not derived from a container
-
isNoSet
public static boolean isNoSet(int p_iClassID)
true if p_class is not derived from a set- Parameters:
p_iClassID- The class type id- Returns:
trueif not derived for a set
-
isNoSet
public static boolean isNoSet(String p_strClass)
true if p_strClass is not derived from a set- Parameters:
p_strClass- The class type name- Returns:
trueif class not derived from a set
-
isNoSet
public static boolean isNoSet(DsClass p_class)
true if p_class is not derived from a set- Parameters:
p_class- The class object- Returns:
trueif not derived from a set
-
isNoContainerOrSet
public static boolean isNoContainerOrSet(int p_iClassID)
true if p_iClassID is not derived from a container or a set- Parameters:
p_iClassID- The class type id- Returns:
trueif not derived form a container or set
-
isNoContainerOrSet
public static boolean isNoContainerOrSet(String p_strClass)
true if p_strClass is not derived from a container or a set- Parameters:
p_strClass- The class type name- Returns:
trueif not derived from a container or set
-
isNoContainerOrSet
public static boolean isNoContainerOrSet(DsClass p_class)
true if p_class is not derived from a container or a set- Parameters:
p_class- The class object- Returns:
- true if not derived from a container or set
-
isArrayAttribute
public static boolean isArrayAttribute(String p_strGuid)
checks if the given guid is an array attribute- Parameters:
p_strGuid- unique identifier- Returns:
trueif the attribute of the guid is an array attribute otherwisefalse
-
mapClassKeyToClassId
public static int mapClassKeyToClassId(String p_strKey)
- Parameters:
p_strKey- The class type name (must be valid otherwise an DsRuntime exception will be thrown).- Returns:
- The class type id.
-
mapClassIdToClassKey
public static String mapClassIdToClassKey(int p_iID)
- Parameters:
p_iID- The class type id (must be valid otherwise an DsRuntime exception will be thrown).- Returns:
- The class type name.
-
isTenantAttributeDefined
public static boolean isTenantAttributeDefined()
Is a attribute defined as tenant ID in this schema?- Returns:
trueif a attribute is defined as tenant ID in this schema.
-
-