com.sun.xml.ws.security.impl.policy.EncryptedElements Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of webservices-rt Show documentation
Show all versions of webservices-rt Show documentation
This module contains the Metro runtime code.
/*
* Copyright (c) 1997, 2018 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Distribution License v. 1.0, which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
/*
* EncryptedElements.java
*
* Created on February 15, 2006, 3:44 PM
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
package com.sun.xml.ws.security.impl.policy;
import com.sun.xml.ws.policy.AssertionSet;
import com.sun.xml.ws.policy.PolicyAssertion;
import com.sun.xml.ws.policy.sourcemodel.AssertionData;
import com.sun.xml.ws.security.policy.SecurityPolicyVersion;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.Iterator;
import java.util.List;
import java.util.logging.Level;
import javax.xml.namespace.QName;
import static com.sun.xml.ws.security.impl.policy.Constants.*;
import com.sun.xml.ws.security.policy.SecurityAssertionValidator;
/**
*
* @author Abhijit Das
*/
public class EncryptedElements extends PolicyAssertion implements com.sun.xml.ws.security.policy.EncryptedElements, SecurityAssertionValidator {
private String xpathVersion;
private ArrayList targetList;
private static List emptyList = Collections.emptyList();
private boolean populated = false;
private static QName XPathVersion = new QName("XPathVersion");
private AssertionFitness fitness = AssertionFitness.IS_VALID;
private SecurityPolicyVersion spVersion;
/**
* Creates a new instance of EncryptedElements
*/
public EncryptedElements() {
spVersion = SecurityPolicyVersion.SECURITYPOLICY200507;
}
public EncryptedElements(AssertionData name,Collection nestedAssertions, AssertionSet nestedAlternative) {
super(name,nestedAssertions,nestedAlternative);
String nsUri = getName().getNamespaceURI();
spVersion = PolicyUtil.getSecurityPolicyVersion(nsUri);
}
public String getXPathVersion() {
return xpathVersion;
}
public void setXPathVersion(String version) {
this.xpathVersion = version;
}
public void addTarget(String target) {
if ( targetList == null ) {
targetList = new ArrayList();
}
targetList.add(target);
}
public void removeTarget(String target) {
if ( targetList != null ) {
targetList.remove(target);
}
}
public Iterator getTargets() {
populate();
if ( targetList != null ) {
return targetList.iterator();
}
return emptyList.iterator();
}
public AssertionFitness validate(boolean isServer) {
return populate(isServer);
}
private void populate(){
populate(false);
}
private synchronized AssertionFitness populate(boolean isServer) {
if(!populated){
this.xpathVersion = (String)this.getAttributeValue(XPathVersion);
if ( this.hasNestedAssertions() ) {
Iterator it = this.getNestedAssertionsIterator();
if ( it.hasNext() ) {
PolicyAssertion assertion = it.next();
if ( PolicyUtil.isXPath(assertion, spVersion)) {
addTarget(assertion.getValue());
} else{
if(!assertion.isOptional()){
log_invalid_assertion(assertion, isServer,EncryptedElements);
fitness = AssertionFitness.HAS_UNKNOWN_ASSERTION;
}
}
}
}
populated = true;
}
return fitness;
}
}