Uses of Class
oemware.core.CoreException

Packages that use CoreException
oemware.core The core package is responsible for initializing, running and shutting down a server. 
oemware.core.dao   
oemware.core.util   
 

Uses of CoreException in oemware.core
 

Subclasses of CoreException in oemware.core
 class FileException
          The file exception.
 class ServiceException
          The service exception.
 

Uses of CoreException in oemware.core.dao
 

Subclasses of CoreException in oemware.core.dao
 class DaoException
          The dao exception.
 

Uses of CoreException in oemware.core.util
 

Methods in oemware.core.util that throw CoreException
static void SystemUtils.addShutdownHookThread()
          Add the shutdown hook thread.
static void FileUtils.checkCanReadOrWrite(java.io.File pFile, boolean pReadCheck)
          Check to see if a file is readable or writable.
static void FileUtils.closeFileInputStream(java.io.FileInputStream pInputStream)
          Close the input stream.
static void FileUtils.closeFileInputStreams(java.util.List<java.io.FileInputStream> pInputStreams)
          Close the input streams.
static void FileUtils.closeInputStream(java.io.InputStream pInputStream)
          Close the input stream.
static java.io.FileInputStream FileUtils.createFileInputStream(java.lang.String pFileName, boolean pExists)
          Load a file channel.
static void FileUtils.deleteFile(java.io.File pFile)
           
static void FileUtils.deleteFile(java.lang.String pFileName)
          Delete the file.
static org.apache.commons.chain.Context ChainUtils.executeChain(org.apache.commons.chain.Catalog pCatalog, java.lang.String pChainName)
          Execute a command name in a chain.
static void ChainUtils.executeChain(org.apache.commons.chain.Catalog pCatalog, java.lang.String pChainName, org.apache.commons.chain.Context pContext)
          Execute a command name in a chain.
static org.apache.commons.chain.Context ChainUtils.executeChain(org.apache.commons.chain.Chain pChain)
          Execute a chain with a new empty context object.
static void ChainUtils.executeChain(org.apache.commons.chain.Chain pChain, org.apache.commons.chain.Context pContext)
          Execute a chain with a passed context.
static org.apache.commons.chain.Chain ChainUtils.getChain(org.apache.commons.chain.Catalog pCatalog, java.lang.String pChainName)
          Returns a chain from a catalog.
static java.lang.String SystemUtils.getSystemProperty(java.lang.String pParamName)
          Returns the property or dies.
static boolean SystemUtils.getSystemPropertyBool(java.lang.String pParamName)
          Returns the property or throws an exception.
static int SystemUtils.getSystemPropertyInt(java.lang.String pParamName)
          Returns the property or exception.
static short SystemUtils.getSystemPropertyShort(java.lang.String pParamName)
          Returns the property or exception.
static void FileUtils.isFile(java.io.File pFile)
          Checks to see if the object passed is a file.
static void FileUtils.isFile(java.lang.String pFileName)
          Checks to see if the object passed is a file.
static void JaxbUtils.jaxbMarshal(java.io.OutputStream pOutput, java.lang.String pPackage, java.lang.String pRootElementName, java.lang.Class pRootType, java.lang.Object pObject, boolean pHumanReadable)
          Converts jaxb classes to Xml (marshal).
static void JaxbUtils.jaxbMarshal(java.lang.String pFileName, java.lang.String pPackage, java.lang.String pRootElementName, java.lang.Class pRootType, java.lang.Object pObject)
          Converts jaxb classes to Xml (marshal).
static void JaxbUtils.jaxbMarshal(java.lang.String pFileName, java.lang.String pPackage, java.lang.String pRootElementName, java.lang.Class pRootType, java.lang.Object pObject, boolean pHumanReadable)
          Converts jaxb classes to Xml (marshal).
static java.lang.Object JaxbUtils.jaxbUnmarshal(java.io.InputStream pInput, java.lang.String pPackage)
          Does a jaxb parse.
static java.lang.Object JaxbUtils.jaxbUnmarshal(java.lang.String pFileName, java.lang.String pPackage)
          Does a jaxb parse.
static long FileUtils.lastModifiedTime(java.io.File pFile)
          Retrurns a file's last modified time.
static org.apache.commons.chain.Catalog ChainUtils.loadCatalog(java.lang.String pResourceName, java.lang.String pCatalogName)
          Load a catalog.
static java.util.List<java.io.FileInputStream> FileUtils.loadInputStreams(java.util.List<java.io.File> pFiles)
          Load the file input streams for the files passed.
static void FileUtils.loadProperties(java.io.File pFile, java.util.Properties pProperties)
          Refresh the values in a properties object with the values in the file system.
static void FileUtils.loadProperties(java.io.File pFile, java.util.Properties pProperties, boolean mIsXml)
          Refresh the values in a properties object with the values in the file system.
static void FileUtils.loadProperties(java.lang.String pFileName, java.util.Properties pProperties)
          Refresh the values in a properties object with the values in the file system.
static java.net.URL ClasspathUtils.loadResourceUrl(java.lang.String pName)
          Load a resource url.
static java.util.Properties ClasspathUtils.loadXmlPropertes(java.lang.String pResourceName)
          Load properties from an xml config file in the path.
static void FileUtils.loadXmlProperties(java.io.File pFile, java.util.Properties pProperties)
          Refresh the values in a properties object with the values in the file system.
static java.util.Properties FileUtils.loadXmlProperties(java.lang.String pFileName)
          Load properties from an xml config file.
static void FileUtils.loadXmlProperties(java.lang.String pFileName, java.util.Properties pProperties)
          Refresh the values in a properties object with the values in the file system.
static java.nio.ByteBuffer FileUtils.mapFileToBuffer(java.lang.String pFileName)
          Read a file to a memory mapped buffer (read only).
static void FileUtils.moveFile(java.io.File pFile, java.io.File pToDir)
          Move a file.
static void FileUtils.moveFile(java.lang.String pFile, java.lang.String pToDir)
          Move a file.
static java.io.InputStream ClasspathUtils.openResourceUrl(java.lang.String pName)
          Open a resource url input stream.
static void FileUtils.readableFile(java.io.File pFile)
          Check to see if the file name is a readable file.
static void FileUtils.readableFile(java.lang.String pFileName)
          Check to see if the file name is a readable file.
static java.nio.ByteBuffer FileUtils.readFileBuffer(java.io.File pFile)
          Reads a file and closes the file stream/channel.
static java.lang.String FileUtils.readFileStr(java.io.File pFile)
          Reads a file and closes the file stream/channel.
static java.lang.String FileUtils.readFileStr(java.lang.String pFileName)
          Reads a file and closes the file stream/channel.
static void FileUtils.renameFile(java.io.File pBefore, java.io.File pAfter)
          Rename the file.
static void FileUtils.renameFile(java.io.File pFrom, java.io.File pTo, long pRetrySleep)
          Rename a file with a retry.
static void FileUtils.renameFile(java.lang.String pBefore, java.lang.String pAfter)
          Rename the file.
static void SystemUtils.startDaemonThread()
          Start the daemon thread.
static void SystemUtils.stopDaemonThread()
          Stop the daemon thread.
static void FileUtils.storeProperties(java.lang.String pFileName, java.util.Properties pProperties)
          Store properties object.
static void FileUtils.storeProperties(java.lang.String pFileName, java.util.Properties pProperties, boolean pUseXml)
          Store properties object.
static void FileUtils.storeXmlProperties(java.lang.String pFileName, java.util.Properties pProperties)
          Store properties object to xml.
static void FileUtils.writableFile(java.io.File pFile)
          Check to see if the file name is a writable file.
static void FileUtils.writableFile(java.lang.String pFileName)
          Check to see if the file name is a writable file.
static void FileUtils.writeBufferToFile(java.nio.ByteBuffer pBuffer, java.lang.String pFileName)
          Write the entire byte buffer to a file.
static void FileUtils.writeBufferToFile(java.nio.ByteBuffer pBuffer, java.lang.String pFileName, java.lang.String pTmpFileName)
          Write the entire byte buffer to a file.
 



Copyright © 2009 Deft Labs - Released under LGPL, Version 3.0