| Modifier and Type | Method and Description | 
|---|---|
| static ClientSAF | getClientSAF()Returns a Client SAF instance. | 
| static ClientSAF | getClientSAF(File rootDirectory,
            InputStream configuration)Returns a client SAF instance. | 
| static ClientSAF | getClientSAF(InputStream configuration)Returns a Client SAF instance. | 
public static ClientSAF getClientSAF() throws ClientSAFDuplicateException, JMSException
ClientSAF.xml
 and can be found in the current working directory of
 this JVM.ClientSAFDuplicateException - If this ClientSAF
 object already exists and is running for this directory.
 The running ClientSAF object can be received using 
 ClientSAFDuplicateException.getDuplicate(). 
 In this case, the input stream has not been reparsed.JMSException - If this call is attempted on a
 WLS server instance. Client SAF can only be used on a client.public static ClientSAF getClientSAF(InputStream configuration) throws ClientSAFDuplicateException, JMSException
configuration - An input stream for a configuration that
 is well-formed with respect to the weblogic-jmsmd.xsd schema and which
 has a root element of weblogic-client-jms.ClientSAFDuplicateException - If this ClientSAF
 object already exists and is running for this directory.
 The running ClientSAF object can be received using
  ClientSAFDuplicateException.getDuplicate(). 
 In this case, the input stream has not been reparsed.JMSException - If this call is attempted on a
 WLS server instance. Client SAF can only be used on a client.public static ClientSAF getClientSAF(File rootDirectory, InputStream configuration) throws ClientSAFDuplicateException, JMSException
rootDirectory - The directory that should be considered
 the root directory where the Client SAF implementation can
 store files and directories. Any relative paths in the
 configuration file are relative to this directory (for
 example, the store directory).configuration - An input stream for a configuration that
 is well-formed with respect to the weblogic-jmsmd.xsd schema and which
 has a root element of weblogic-client-jms.ClientSAFDuplicateException - If this ClientSAF
 object already exists and is running for this directory.
 The running ClientSAF object can be received using
 ClientSAFDuplicateException.getDuplicate().  
 In this case, the input stream has not been reparsed.JMSException - If this call is attempted on a
 WLS server instance. Client SAF can only be used on a client.