Package com.sun.enterprise.tools.deployment.backend

Examples of com.sun.enterprise.tools.deployment.backend.JarInstaller


    public Set getConnectionFactoryPropertyTemplate(String appName,
                                                    String connectorName)
        throws RemoteException, PoolingException, ServerException {

        String serverName = getCurrentServer();
        JarInstaller installer = this.getJarInstaller(serverName);
        return installer.getConnectionFactoryPropertyTemplate
            (appName, connectorName);
    }
View Full Code Here


                                     String xaRecoveryPassword,
                                     Properties props)
        throws RemoteException, PoolingException, ServerException {

        String serverName = getCurrentServer();
        JarInstaller installer = this.getJarInstaller(serverName);
        installer.addConnectionFactory(appName, connectorName,
                                       jndiName, xaRecoveryUser,
                                       xaRecoveryPassword, props);
    }
View Full Code Here

    public void removeConnectionFactory(String jndiName)
        throws RemoteException, PoolingException, ServerException {

        String serverName = getCurrentServer();
        JarInstaller installer = this.getJarInstaller(serverName);
        installer.removeConnectionFactory(jndiName);
    }
View Full Code Here

    }

    public Set listConnectorResources()
        throws RemoteException, ServerException {
        String serverName = getCurrentServer();
        JarInstaller installer = this.getJarInstaller(serverName);
        Set res = installer.listConnectorResources();
        return res;
    }
View Full Code Here

TOP

Related Classes of com.sun.enterprise.tools.deployment.backend.JarInstaller

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.