Package com.sun.enterprise.deployment.backend

Examples of com.sun.enterprise.deployment.backend.ClientJarMakerRegistry


     * @return the path for the client jar file of a deployed application
     */
    public static String getClientJarPath(String moduleID) {
       
        // let's ensure first that our client jar is ready.
        ClientJarMakerRegistry registry = ClientJarMakerRegistry.getInstance();
       
        if (registry.isRegistered(moduleID)) {
           
            // let's wait until it is finished.
            registry.waitForCompletion(moduleID);
        }
       
        return moduleID + DeploymentImplConstants.ClientJarSuffix;
       
    }
View Full Code Here


     * @return the path for the client jar file of a deployed application
     */
    public static String getClientJarPath(String moduleID) {
       
        // let's ensure first that our client jar is ready.
        ClientJarMakerRegistry registry = ClientJarMakerRegistry.getInstance();
       
        if (registry.isRegistered(moduleID)) {
           
            // let's wait until it is finished.
            registry.waitForCompletion(moduleID);
        }
       
        return moduleID + DeploymentImplConstants.ClientJarSuffix;
       
    }
View Full Code Here

TOP

Related Classes of com.sun.enterprise.deployment.backend.ClientJarMakerRegistry

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.