Package com.sun.enterprise.deployment.runtime

Examples of com.sun.enterprise.deployment.runtime.JavaWebStartAccessDescriptor


        }
        /*
         * The developer might have set the value in the sun-application-client.xml
         * descriptor.
         */
        final JavaWebStartAccessDescriptor jws =
            descriptor.getJavaWebStartAccessDescriptor();
        if (jws != null && jws.getContextRoot() != null) {
            ufContextRoot = jws.getContextRoot();
        }
        return ufContextRoot;
    }
View Full Code Here


        return new AppClientTracerVisitor();
    }

    public JavaWebStartAccessDescriptor getJavaWebStartAccessDescriptor() {
        if (jwsAccessDescriptor == null) {
            jwsAccessDescriptor = new JavaWebStartAccessDescriptor();
            jwsAccessDescriptor.setBundleDescriptor(this);
        }
        return jwsAccessDescriptor;
    }
View Full Code Here

TOP

Related Classes of com.sun.enterprise.deployment.runtime.JavaWebStartAccessDescriptor

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.