blob: e940d43ba34c6b4d297c596e73f9741d6a6a2a24 [file] [log] [blame]
/*
* Copyright 2004,2005 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.ws.secpolicy.model;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.HashMap;
import javax.xml.namespace.QName;
import javax.xml.stream.XMLStreamException;
import javax.xml.stream.XMLStreamWriter;
import org.apache.neethi.PolicyComponent;
import org.apache.ws.secpolicy.SP11Constants;
import org.apache.ws.secpolicy.SP12Constants;
import org.apache.ws.secpolicy.SPConstants;
public class RequiredElements extends AbstractSecurityAssertion {
private ArrayList xPathExpressions = new ArrayList();
private HashMap declaredNamespaces = new HashMap();
private String xPathVersion;
public RequiredElements(int version) {
setVersion(version);
}
/**
* @return Returns the xPathExpressions.
*/
public ArrayList getXPathExpressions() {
return xPathExpressions;
}
public void addXPathExpression(String expr) {
this.xPathExpressions.add(expr);
}
/**
* @return Returns the xPathVersion.
*/
public String getXPathVersion() {
return xPathVersion;
}
/**
* @param pathVersion
* The xPathVersion to set.
*/
public void setXPathVersion(String pathVersion) {
xPathVersion = pathVersion;
}
public HashMap getDeclaredNamespaces () {
return declaredNamespaces;
}
public void addDeclaredNamespaces(String uri, String prefix ) {
declaredNamespaces.put(prefix, uri);
}
public void serialize(XMLStreamWriter writer) throws XMLStreamException {
String prefix = getName().getPrefix();
String localName = getName().getLocalPart();
String namespaceURI = getName().getNamespaceURI();
// <sp:RequiredElements>
writeStartElement(writer, prefix, localName, namespaceURI);
if (xPathVersion != null) {
writeAttribute(writer, prefix, namespaceURI, SPConstants.XPATH_VERSION, xPathVersion);
}
String xpathExpression;
for (Iterator iterator = xPathExpressions.iterator(); iterator
.hasNext();) {
xpathExpression = (String) iterator.next();
// <sp:XPath ..>
writeStartElement(writer, prefix, SPConstants.XPATH_EXPR, namespaceURI);
writer.writeCharacters(xpathExpression);
writer.writeEndElement();
}
//</sp:RequiredElements>
writer.writeEndElement();
}
public QName getName() {
if (version == SPConstants.SP_V12) {
return SP12Constants.REQUIRED_ELEMENTS;
} else {
return SP11Constants.REQUIRED_ELEMENTS;
}
}
public PolicyComponent normalize() {
return this;
}
}