Java Code Examples for com.sun.xml.internal.ws.policy.PolicyMap#createPolicyMap()

The following examples show how to use com.sun.xml.internal.ws.policy.PolicyMap#createPolicyMap() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: PolicyWSDLGeneratorExtension.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
@Override
public void start(final WSDLGenExtnContext context) {
    LOGGER.entering();
    try {
        this.seiModel = context.getModel();

        final PolicyMapConfigurator[] policyMapConfigurators = loadConfigurators();
        final PolicyMapExtender[] extenders = new PolicyMapExtender[policyMapConfigurators.length];
        for (int i = 0; i < policyMapConfigurators.length; i++) {
            extenders[i] = PolicyMapExtender.createPolicyMapExtender();
        }
        // Read policy config file
        policyMap = PolicyResolverFactory.create().resolve(
                new PolicyResolver.ServerContext(policyMap, context.getContainer(), context.getEndpointClass(), false, extenders));

        if (policyMap == null) {
            LOGGER.fine(PolicyMessages.WSP_1019_CREATE_EMPTY_POLICY_MAP());
            policyMap = PolicyMap.createPolicyMap(Arrays.asList(extenders));
        }

        final WSBinding binding = context.getBinding();
        try {
            final Collection<PolicySubject> policySubjects = new LinkedList<PolicySubject>();
            for (int i = 0; i < policyMapConfigurators.length; i++) {
                policySubjects.addAll(policyMapConfigurators[i].update(policyMap, seiModel, binding));
                extenders[i].disconnect();
            }
            PolicyMapUtil.insertPolicies(policyMap, policySubjects, this.seiModel.getServiceQName(), this.seiModel.getPortName());
        } catch (PolicyException e) {
            throw LOGGER.logSevereException(new WebServiceException(PolicyMessages.WSP_1017_MAP_UPDATE_FAILED(), e));
        }
        final TypedXmlWriter root = context.getRoot();
        root._namespace(NamespaceVersion.v1_2.toString(), NamespaceVersion.v1_2.getDefaultNamespacePrefix());
        root._namespace(NamespaceVersion.v1_5.toString(), NamespaceVersion.v1_5.getDefaultNamespacePrefix());
        root._namespace(PolicyConstants.WSU_NAMESPACE_URI, PolicyConstants.WSU_NAMESPACE_PREFIX);

    } finally {
        LOGGER.exiting();
    }
}
 
Example 2
Source File: PolicyMapBuilder.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Iterates all the registered PolicyBuilders and lets them populate
 * their changes into PolicyMap. Registers mutators from collection given as a parameter
 * with the newly created map.
 */
private PolicyMap getNewPolicyMap(final PolicyMapMutator... externalMutators) throws PolicyException{
    final HashSet<PolicyMapMutator> mutators = new HashSet<PolicyMapMutator>();
    final PolicyMapExtender myExtender = PolicyMapExtender.createPolicyMapExtender();
    mutators.add(myExtender);
    if (null != externalMutators) {
        mutators.addAll(Arrays.asList(externalMutators));
    }
    final PolicyMap policyMap = PolicyMap.createPolicyMap(mutators);
    for(BuilderHandler builder : policyBuilders){
        builder.populate(myExtender);
    }
    return policyMap;
}
 
Example 3
Source File: PolicyMapBuilder.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Iterates all the registered PolicyBuilders and lets them populate
 * their changes into PolicyMap. Registers mutators from collection given as a parameter
 * with the newly created map.
 */
private PolicyMap getNewPolicyMap(final PolicyMapMutator... externalMutators) throws PolicyException{
    final HashSet<PolicyMapMutator> mutators = new HashSet<PolicyMapMutator>();
    final PolicyMapExtender myExtender = PolicyMapExtender.createPolicyMapExtender();
    mutators.add(myExtender);
    if (null != externalMutators) {
        mutators.addAll(Arrays.asList(externalMutators));
    }
    final PolicyMap policyMap = PolicyMap.createPolicyMap(mutators);
    for(BuilderHandler builder : policyBuilders){
        builder.populate(myExtender);
    }
    return policyMap;
}
 
Example 4
Source File: PortInfo.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
public PolicyMap createPolicyMap() {
   PolicyMap map;
   if(portModel != null) {
        map = portModel.getOwner().getParent().getPolicyMap();
   } else {
       map = PolicyResolverFactory.create().resolve(new PolicyResolver.ClientContext(null,owner.getContainer()));
   }
   //still map is null, create a empty map
   if(map == null)
       map = PolicyMap.createPolicyMap(null);
   return map;
}
 
Example 5
Source File: PolicyWSDLGeneratorExtension.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
@Override
public void start(final WSDLGenExtnContext context) {
    LOGGER.entering();
    try {
        this.seiModel = context.getModel();

        final PolicyMapConfigurator[] policyMapConfigurators = loadConfigurators();
        final PolicyMapExtender[] extenders = new PolicyMapExtender[policyMapConfigurators.length];
        for (int i = 0; i < policyMapConfigurators.length; i++) {
            extenders[i] = PolicyMapExtender.createPolicyMapExtender();
        }
        // Read policy config file
        policyMap = PolicyResolverFactory.create().resolve(
                new PolicyResolver.ServerContext(policyMap, context.getContainer(), context.getEndpointClass(), false, extenders));

        if (policyMap == null) {
            LOGGER.fine(PolicyMessages.WSP_1019_CREATE_EMPTY_POLICY_MAP());
            policyMap = PolicyMap.createPolicyMap(Arrays.asList(extenders));
        }

        final WSBinding binding = context.getBinding();
        try {
            final Collection<PolicySubject> policySubjects = new LinkedList<PolicySubject>();
            for (int i = 0; i < policyMapConfigurators.length; i++) {
                policySubjects.addAll(policyMapConfigurators[i].update(policyMap, seiModel, binding));
                extenders[i].disconnect();
            }
            PolicyMapUtil.insertPolicies(policyMap, policySubjects, this.seiModel.getServiceQName(), this.seiModel.getPortName());
        } catch (PolicyException e) {
            throw LOGGER.logSevereException(new WebServiceException(PolicyMessages.WSP_1017_MAP_UPDATE_FAILED(), e));
        }
        final TypedXmlWriter root = context.getRoot();
        root._namespace(NamespaceVersion.v1_2.toString(), NamespaceVersion.v1_2.getDefaultNamespacePrefix());
        root._namespace(NamespaceVersion.v1_5.toString(), NamespaceVersion.v1_5.getDefaultNamespacePrefix());
        root._namespace(PolicyConstants.WSU_NAMESPACE_URI, PolicyConstants.WSU_NAMESPACE_PREFIX);

    } finally {
        LOGGER.exiting();
    }
}
 
Example 6
Source File: PolicyMapBuilder.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Iterates all the registered PolicyBuilders and lets them populate
 * their changes into PolicyMap. Registers mutators from collection given as a parameter
 * with the newly created map.
 */
private PolicyMap getNewPolicyMap(final PolicyMapMutator... externalMutators) throws PolicyException{
    final HashSet<PolicyMapMutator> mutators = new HashSet<PolicyMapMutator>();
    final PolicyMapExtender myExtender = PolicyMapExtender.createPolicyMapExtender();
    mutators.add(myExtender);
    if (null != externalMutators) {
        mutators.addAll(Arrays.asList(externalMutators));
    }
    final PolicyMap policyMap = PolicyMap.createPolicyMap(mutators);
    for(BuilderHandler builder : policyBuilders){
        builder.populate(myExtender);
    }
    return policyMap;
}
 
Example 7
Source File: PortInfo.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
public PolicyMap createPolicyMap() {
   PolicyMap map;
   if(portModel != null) {
        map = portModel.getOwner().getParent().getPolicyMap();
   } else {
       map = PolicyResolverFactory.create().resolve(new PolicyResolver.ClientContext(null,owner.getContainer()));
   }
   //still map is null, create a empty map
   if(map == null)
       map = PolicyMap.createPolicyMap(null);
   return map;
}
 
Example 8
Source File: PolicyWSDLGeneratorExtension.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
@Override
public void start(final WSDLGenExtnContext context) {
    LOGGER.entering();
    try {
        this.seiModel = context.getModel();

        final PolicyMapConfigurator[] policyMapConfigurators = loadConfigurators();
        final PolicyMapExtender[] extenders = new PolicyMapExtender[policyMapConfigurators.length];
        for (int i = 0; i < policyMapConfigurators.length; i++) {
            extenders[i] = PolicyMapExtender.createPolicyMapExtender();
        }
        // Read policy config file
        policyMap = PolicyResolverFactory.create().resolve(
                new PolicyResolver.ServerContext(policyMap, context.getContainer(), context.getEndpointClass(), false, extenders));

        if (policyMap == null) {
            LOGGER.fine(PolicyMessages.WSP_1019_CREATE_EMPTY_POLICY_MAP());
            policyMap = PolicyMap.createPolicyMap(Arrays.asList(extenders));
        }

        final WSBinding binding = context.getBinding();
        try {
            final Collection<PolicySubject> policySubjects = new LinkedList<PolicySubject>();
            for (int i = 0; i < policyMapConfigurators.length; i++) {
                policySubjects.addAll(policyMapConfigurators[i].update(policyMap, seiModel, binding));
                extenders[i].disconnect();
            }
            PolicyMapUtil.insertPolicies(policyMap, policySubjects, this.seiModel.getServiceQName(), this.seiModel.getPortName());
        } catch (PolicyException e) {
            throw LOGGER.logSevereException(new WebServiceException(PolicyMessages.WSP_1017_MAP_UPDATE_FAILED(), e));
        }
        final TypedXmlWriter root = context.getRoot();
        root._namespace(NamespaceVersion.v1_2.toString(), NamespaceVersion.v1_2.getDefaultNamespacePrefix());
        root._namespace(NamespaceVersion.v1_5.toString(), NamespaceVersion.v1_5.getDefaultNamespacePrefix());
        root._namespace(PolicyConstants.WSU_NAMESPACE_URI, PolicyConstants.WSU_NAMESPACE_PREFIX);

    } finally {
        LOGGER.exiting();
    }
}
 
Example 9
Source File: PortInfo.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
public PolicyMap createPolicyMap() {
   PolicyMap map;
   if(portModel != null) {
        map = portModel.getOwner().getParent().getPolicyMap();
   } else {
       map = PolicyResolverFactory.create().resolve(new PolicyResolver.ClientContext(null,owner.getContainer()));
   }
   //still map is null, create a empty map
   if(map == null)
       map = PolicyMap.createPolicyMap(null);
   return map;
}
 
Example 10
Source File: PortInfo.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
public PolicyMap createPolicyMap() {
   PolicyMap map;
   if(portModel != null) {
        map = portModel.getOwner().getParent().getPolicyMap();
   } else {
       map = PolicyResolverFactory.create().resolve(new PolicyResolver.ClientContext(null,owner.getContainer()));
   }
   //still map is null, create a empty map
   if(map == null)
       map = PolicyMap.createPolicyMap(null);
   return map;
}
 
Example 11
Source File: PolicyMapBuilder.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Iterates all the registered PolicyBuilders and lets them populate
 * their changes into PolicyMap. Registers mutators from collection given as a parameter
 * with the newly created map.
 */
private PolicyMap getNewPolicyMap(final PolicyMapMutator... externalMutators) throws PolicyException{
    final HashSet<PolicyMapMutator> mutators = new HashSet<PolicyMapMutator>();
    final PolicyMapExtender myExtender = PolicyMapExtender.createPolicyMapExtender();
    mutators.add(myExtender);
    if (null != externalMutators) {
        mutators.addAll(Arrays.asList(externalMutators));
    }
    final PolicyMap policyMap = PolicyMap.createPolicyMap(mutators);
    for(BuilderHandler builder : policyBuilders){
        builder.populate(myExtender);
    }
    return policyMap;
}
 
Example 12
Source File: PolicyMapBuilder.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Iterates all the registered PolicyBuilders and lets them populate
 * their changes into PolicyMap. Registers mutators from collection given as a parameter
 * with the newly created map.
 */
private PolicyMap getNewPolicyMap(final PolicyMapMutator... externalMutators) throws PolicyException{
    final HashSet<PolicyMapMutator> mutators = new HashSet<PolicyMapMutator>();
    final PolicyMapExtender myExtender = PolicyMapExtender.createPolicyMapExtender();
    mutators.add(myExtender);
    if (null != externalMutators) {
        mutators.addAll(Arrays.asList(externalMutators));
    }
    final PolicyMap policyMap = PolicyMap.createPolicyMap(mutators);
    for(BuilderHandler builder : policyBuilders){
        builder.populate(myExtender);
    }
    return policyMap;
}
 
Example 13
Source File: PortInfo.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
public PolicyMap createPolicyMap() {
   PolicyMap map;
   if(portModel != null) {
        map = portModel.getOwner().getParent().getPolicyMap();
   } else {
       map = PolicyResolverFactory.create().resolve(new PolicyResolver.ClientContext(null,owner.getContainer()));
   }
   //still map is null, create a empty map
   if(map == null)
       map = PolicyMap.createPolicyMap(null);
   return map;
}
 
Example 14
Source File: PortInfo.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
public PolicyMap createPolicyMap() {
   PolicyMap map;
   if(portModel != null) {
        map = portModel.getOwner().getParent().getPolicyMap();
   } else {
       map = PolicyResolverFactory.create().resolve(new PolicyResolver.ClientContext(null,owner.getContainer()));
   }
   //still map is null, create a empty map
   if(map == null)
       map = PolicyMap.createPolicyMap(null);
   return map;
}
 
Example 15
Source File: PolicyMapBuilder.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Iterates all the registered PolicyBuilders and lets them populate
 * their changes into PolicyMap. Registers mutators from collection given as a parameter
 * with the newly created map.
 */
private PolicyMap getNewPolicyMap(final PolicyMapMutator... externalMutators) throws PolicyException{
    final HashSet<PolicyMapMutator> mutators = new HashSet<PolicyMapMutator>();
    final PolicyMapExtender myExtender = PolicyMapExtender.createPolicyMapExtender();
    mutators.add(myExtender);
    if (null != externalMutators) {
        mutators.addAll(Arrays.asList(externalMutators));
    }
    final PolicyMap policyMap = PolicyMap.createPolicyMap(mutators);
    for(BuilderHandler builder : policyBuilders){
        builder.populate(myExtender);
    }
    return policyMap;
}
 
Example 16
Source File: PortInfo.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
public PolicyMap createPolicyMap() {
   PolicyMap map;
   if(portModel != null) {
        map = portModel.getOwner().getParent().getPolicyMap();
   } else {
       map = PolicyResolverFactory.create().resolve(new PolicyResolver.ClientContext(null,owner.getContainer()));
   }
   //still map is null, create a empty map
   if(map == null)
       map = PolicyMap.createPolicyMap(null);
   return map;
}
 
Example 17
Source File: PolicyWSDLGeneratorExtension.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
@Override
public void start(final WSDLGenExtnContext context) {
    LOGGER.entering();
    try {
        this.seiModel = context.getModel();

        final PolicyMapConfigurator[] policyMapConfigurators = loadConfigurators();
        final PolicyMapExtender[] extenders = new PolicyMapExtender[policyMapConfigurators.length];
        for (int i = 0; i < policyMapConfigurators.length; i++) {
            extenders[i] = PolicyMapExtender.createPolicyMapExtender();
        }
        // Read policy config file
        policyMap = PolicyResolverFactory.create().resolve(
                new PolicyResolver.ServerContext(policyMap, context.getContainer(), context.getEndpointClass(), false, extenders));

        if (policyMap == null) {
            LOGGER.fine(PolicyMessages.WSP_1019_CREATE_EMPTY_POLICY_MAP());
            policyMap = PolicyMap.createPolicyMap(Arrays.asList(extenders));
        }

        final WSBinding binding = context.getBinding();
        try {
            final Collection<PolicySubject> policySubjects = new LinkedList<PolicySubject>();
            for (int i = 0; i < policyMapConfigurators.length; i++) {
                policySubjects.addAll(policyMapConfigurators[i].update(policyMap, seiModel, binding));
                extenders[i].disconnect();
            }
            PolicyMapUtil.insertPolicies(policyMap, policySubjects, this.seiModel.getServiceQName(), this.seiModel.getPortName());
        } catch (PolicyException e) {
            throw LOGGER.logSevereException(new WebServiceException(PolicyMessages.WSP_1017_MAP_UPDATE_FAILED(), e));
        }
        final TypedXmlWriter root = context.getRoot();
        root._namespace(NamespaceVersion.v1_2.toString(), NamespaceVersion.v1_2.getDefaultNamespacePrefix());
        root._namespace(NamespaceVersion.v1_5.toString(), NamespaceVersion.v1_5.getDefaultNamespacePrefix());
        root._namespace(PolicyConstants.WSU_NAMESPACE_URI, PolicyConstants.WSU_NAMESPACE_PREFIX);

    } finally {
        LOGGER.exiting();
    }
}
 
Example 18
Source File: PolicyMapBuilder.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Iterates all the registered PolicyBuilders and lets them populate
 * their changes into PolicyMap. Registers mutators from collection given as a parameter
 * with the newly created map.
 */
private PolicyMap getNewPolicyMap(final PolicyMapMutator... externalMutators) throws PolicyException{
    final HashSet<PolicyMapMutator> mutators = new HashSet<PolicyMapMutator>();
    final PolicyMapExtender myExtender = PolicyMapExtender.createPolicyMapExtender();
    mutators.add(myExtender);
    if (null != externalMutators) {
        mutators.addAll(Arrays.asList(externalMutators));
    }
    final PolicyMap policyMap = PolicyMap.createPolicyMap(mutators);
    for(BuilderHandler builder : policyBuilders){
        builder.populate(myExtender);
    }
    return policyMap;
}
 
Example 19
Source File: PortInfo.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
public PolicyMap createPolicyMap() {
   PolicyMap map;
   if(portModel != null) {
        map = portModel.getOwner().getParent().getPolicyMap();
   } else {
       map = PolicyResolverFactory.create().resolve(new PolicyResolver.ClientContext(null,owner.getContainer()));
   }
   //still map is null, create a empty map
   if(map == null)
       map = PolicyMap.createPolicyMap(null);
   return map;
}
 
Example 20
Source File: PolicyWSDLGeneratorExtension.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
@Override
public void start(final WSDLGenExtnContext context) {
    LOGGER.entering();
    try {
        this.seiModel = context.getModel();

        final PolicyMapConfigurator[] policyMapConfigurators = loadConfigurators();
        final PolicyMapExtender[] extenders = new PolicyMapExtender[policyMapConfigurators.length];
        for (int i = 0; i < policyMapConfigurators.length; i++) {
            extenders[i] = PolicyMapExtender.createPolicyMapExtender();
        }
        // Read policy config file
        policyMap = PolicyResolverFactory.create().resolve(
                new PolicyResolver.ServerContext(policyMap, context.getContainer(), context.getEndpointClass(), false, extenders));

        if (policyMap == null) {
            LOGGER.fine(PolicyMessages.WSP_1019_CREATE_EMPTY_POLICY_MAP());
            policyMap = PolicyMap.createPolicyMap(Arrays.asList(extenders));
        }

        final WSBinding binding = context.getBinding();
        try {
            final Collection<PolicySubject> policySubjects = new LinkedList<PolicySubject>();
            for (int i = 0; i < policyMapConfigurators.length; i++) {
                policySubjects.addAll(policyMapConfigurators[i].update(policyMap, seiModel, binding));
                extenders[i].disconnect();
            }
            PolicyMapUtil.insertPolicies(policyMap, policySubjects, this.seiModel.getServiceQName(), this.seiModel.getPortName());
        } catch (PolicyException e) {
            throw LOGGER.logSevereException(new WebServiceException(PolicyMessages.WSP_1017_MAP_UPDATE_FAILED(), e));
        }
        final TypedXmlWriter root = context.getRoot();
        root._namespace(NamespaceVersion.v1_2.toString(), NamespaceVersion.v1_2.getDefaultNamespacePrefix());
        root._namespace(NamespaceVersion.v1_5.toString(), NamespaceVersion.v1_5.getDefaultNamespacePrefix());
        root._namespace(PolicyConstants.WSU_NAMESPACE_URI, PolicyConstants.WSU_NAMESPACE_PREFIX);

    } finally {
        LOGGER.exiting();
    }
}