Package org.apache.jackrabbit.jca
Class JCAManagedConnectionFactory
- java.lang.Object
-
- org.apache.jackrabbit.jca.JCAManagedConnectionFactory
-
- All Implemented Interfaces:
Serializable,javax.resource.spi.ManagedConnectionFactory
public class JCAManagedConnectionFactory extends Object implements javax.resource.spi.ManagedConnectionFactory
Implements the JCA ManagedConnectionFactory contract.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description JCAManagedConnectionFactory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ObjectcreateConnectionFactory()Creates a Connection Factory instance.ObjectcreateConnectionFactory(javax.resource.spi.ConnectionManager cm)Creates a Connection Factory instance.javax.resource.spi.ManagedConnectioncreateManagedConnection(Subject subject, javax.resource.spi.ConnectionRequestInfo cri)booleanequals(Object o)Return true if equals.protected voidfinalize()Shutdown the repository.BooleangetBindSessionToTransaction()StringgetConfigFile()Return the repository configuration file.StringgetHomeDir()Return the repository home directory.PrintWritergetLogWriter()Get the log writer.RepositorygetRepository()Return the repository, automatically creating it if needed.StringgetRepositoryURI()Return the repository URI.BooleangetStartRepositoryImmediately()inthashCode()Return the hash code.voidlog(String message)Log a message.voidlog(String message, Throwable exception)Log a message.javax.resource.spi.ManagedConnectionmatchManagedConnections(Set set, Subject subject, javax.resource.spi.ConnectionRequestInfo cri)Returns a matched connection from the candidate set of connections.voidsetBindSessionToTransaction(Boolean bindSessionToTransaction)voidsetConfigFile(String conf)Set the repository configuration file.voidsetHomeDir(String home)Set the repository home directory.voidsetLogWriter(PrintWriter logWriter)Set the log writer.voidsetRepositoryURI(String uri)Set the repository URI.voidsetStartRepositoryImmediately(Boolean startRepositoryImmediately)
-
-
-
Method Detail
-
getRepositoryURI
public String getRepositoryURI()
Return the repository URI.
-
setRepositoryURI
public void setRepositoryURI(String uri)
Set the repository URI.
-
getHomeDir
public String getHomeDir()
Return the repository home directory.
-
setHomeDir
public void setHomeDir(String home)
Set the repository home directory.
-
getConfigFile
public String getConfigFile()
Return the repository configuration file.
-
setConfigFile
public void setConfigFile(String conf)
Set the repository configuration file.
-
getLogWriter
public PrintWriter getLogWriter()
Get the log writer.- Specified by:
getLogWriterin interfacejavax.resource.spi.ManagedConnectionFactory
-
setLogWriter
public void setLogWriter(PrintWriter logWriter) throws javax.resource.ResourceException
Set the log writer.- Specified by:
setLogWriterin interfacejavax.resource.spi.ManagedConnectionFactory- Throws:
javax.resource.ResourceException
-
createConnectionFactory
public Object createConnectionFactory() throws javax.resource.ResourceException
Creates a Connection Factory instance.- Specified by:
createConnectionFactoryin interfacejavax.resource.spi.ManagedConnectionFactory- Throws:
javax.resource.ResourceException
-
createConnectionFactory
public Object createConnectionFactory(javax.resource.spi.ConnectionManager cm) throws javax.resource.ResourceException
Creates a Connection Factory instance.- Specified by:
createConnectionFactoryin interfacejavax.resource.spi.ManagedConnectionFactory- Throws:
javax.resource.ResourceException
-
createManagedConnection
public javax.resource.spi.ManagedConnection createManagedConnection(Subject subject, javax.resource.spi.ConnectionRequestInfo cri) throws javax.resource.ResourceException
Creates a new physical connection to the underlying EIS resource manager.
WebSphere 5.1.1 will try to recover an XA resource on startup, regardless whether it was committed or rolled back. On this occasion,
criwill benull. In order to be interoperable, we return an anonymous connection, whose XA resource is recoverable-only.- Specified by:
createManagedConnectionin interfacejavax.resource.spi.ManagedConnectionFactory- Throws:
javax.resource.ResourceException
-
matchManagedConnections
public javax.resource.spi.ManagedConnection matchManagedConnections(Set set, Subject subject, javax.resource.spi.ConnectionRequestInfo cri) throws javax.resource.ResourceException
Returns a matched connection from the candidate set of connections.- Specified by:
matchManagedConnectionsin interfacejavax.resource.spi.ManagedConnectionFactory- Throws:
javax.resource.ResourceException
-
getRepository
public Repository getRepository() throws RepositoryException
Return the repository, automatically creating it if needed.- Throws:
RepositoryException
-
log
public void log(String message)
Log a message.
-
hashCode
public int hashCode()
Return the hash code.
-
equals
public boolean equals(Object o)
Return true if equals.
-
getBindSessionToTransaction
public Boolean getBindSessionToTransaction()
-
setBindSessionToTransaction
public void setBindSessionToTransaction(Boolean bindSessionToTransaction)
-
getStartRepositoryImmediately
public Boolean getStartRepositoryImmediately()
-
setStartRepositoryImmediately
public void setStartRepositoryImmediately(Boolean startRepositoryImmediately)
-
-