Class DMUtil

java.lang.Object
oracle.rules.sdk2.datamodel.DMUtil

public final class DMUtil extends Object
Utility class
  • Method Details

    • isValidString

      public static boolean isValidString(String s)
    • isValidPath

      public static boolean isValidPath(String filepath)
    • isValidDirectory

      public static boolean isValidDirectory(String dirpath)
    • isWriteablePath

      public static boolean isWriteablePath(String filepath)
    • isZipOrJar

      public static boolean isZipOrJar(String path)
    • isValidClassPath

      public static boolean isValidClassPath(String path)
    • getChildElementsByTag

      public static List<Element> getChildElementsByTag(Element element, String name)
    • getChildElement

      public static Element getChildElement(Element parentElem, String childTag)
    • createURL

      public static URL createURL(String fileName)
    • createURI

      public static URI createURI(String fileName)
    • parseXMLDocument

      public static oracle.xml.parser.v2.XMLDocument parseXMLDocument(String docpath) throws Exception
      Throws:
      Exception
    • sameFileURI

      public static boolean sameFileURI(URI url1, URI url2)
    • sameFilePath

      public static boolean sameFilePath(String path1, String path2)
    • findDefObj

      public static oracle.jbo.server.ViewDefImpl findDefObj(String viewDefName)
      find ViewDefImpl given the viewDefName for older labels, this will be findDefObject(viewDefName) for newer labels where man 320 customization api is available, this will be ViewDefImpl.findDefObjectWithCustomizer since we don't have the newer labels, we will be using reflect api
      Parameters:
      vdi -
      Returns:
    • getViewDefFullName

      public static String getViewDefFullName(oracle.jbo.server.ViewDefImpl vdi)
      get the full name of view def. for older labels, this will be vdi.getFullName() for newer labels where man 320 customization api is available, this will be vdi.getStaticDef().getFullName(); since we don't have the newer labels, we will start by using reflect to get getStaticDef().getFullName() if the getStaticDef() method is not found, we are in older label and we will return vdi.getFullName()
      Parameters:
      vdi -
      Returns:
    • getViewDefName

      public static String getViewDefName(oracle.jbo.server.ViewDefImpl vdi)
      get the name of view def. for older labels, this will be vdi.getName() for newer labels where man 320 customization api is available, this will be vdi.getStaticDef().getName(); since we don't have the newer labels, we will start by using reflect to get getStaticDef().getName() if the getStaticDef() method is not found, we are in older label and we will return vdi.getName()
      Parameters:
      vdi -
      Returns:
    • isFile

      public static boolean isFile(URI uri)