Package com.sun.enterprise.config.serverbeans

Examples of com.sun.enterprise.config.serverbeans.ProviderConfig.parent()


        return result;
    }

    private final boolean isReferencedByParent(final ConfigContextEvent cce) throws ConfigException {
        final ProviderConfig pc = getProviderConfig(cce);
        final MessageSecurityConfig msc = (MessageSecurityConfig) pc.parent().parent();
        return msc.getDefaultProvider() != null && msc.getDefaultProvider().equals(pc.getProviderId());
    }

    private ProviderConfig getProviderConfig(final ConfigContextEvent cce) throws ConfigException {
        return (ProviderConfig) cce.getValidationTarget();
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.