blob: a45e3ae32f858177c46f0e8db9d51b9368605612 [file] [log] [blame]
/*
* Copyright 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.jackrabbit.webdav.jcr.nodetype;
import org.apache.jackrabbit.webdav.DavException;
import org.apache.jackrabbit.webdav.DavServletResponse;
import org.apache.jackrabbit.webdav.property.AbstractDavProperty;
import org.apache.jackrabbit.webdav.property.DavProperty;
import org.apache.jackrabbit.webdav.property.DavPropertyName;
import org.apache.jackrabbit.webdav.xml.DomUtil;
import org.apache.log4j.Logger;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
import javax.jcr.nodetype.NodeType;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.Iterator;
import java.util.List;
import java.util.Set;
/**
* <code>NodeTypeProperty</code>...
*/
public class NodeTypeProperty extends AbstractDavProperty implements NodeTypeConstants {
private static Logger log = Logger.getLogger(NodeTypeProperty.class);
private final Set nodetypeNames = new HashSet();
public NodeTypeProperty(DavPropertyName name, NodeType nodeType, boolean isProtected) {
this(name, new NodeType[] {nodeType}, isProtected);
}
public NodeTypeProperty(DavPropertyName name, NodeType[] nodeTypes, boolean isProtected) {
super(name, isProtected);
for (int i = 0; i < nodeTypes.length; i++) {
NodeType nt = nodeTypes[i];
if (nt != null) {
nodetypeNames.add(nodeTypes[i].getName());
}
}
}
/**
* Create a new <code>NodeTypeProperty</code> from the specified general
* DavProperty object.
*
* @param property
* @throws IllegalArgumentException if the content of the specified property
* contains elements other than {@link NodeTypeConstants#XML_NODETYPE}.
*/
public NodeTypeProperty(DavProperty property) throws DavException {
super(property.getName(), property.isProtected());
Object propValue = property.getValue();
Iterator it;
if (propValue instanceof List) {
it = ((List)propValue).iterator();
} else if (propValue instanceof Element) {
List l = new ArrayList();
l.add(propValue);
it = l.iterator();
} else {
log.warn("Cannot build NodeTypeProperty from the given property.");
throw new DavException(DavServletResponse.SC_BAD_REQUEST, "Cannot build NodeTypeProperty from the given property.");
}
while (it.hasNext()) {
Object content = it.next();
if (!(content instanceof Element)) {
continue;
}
Element el = (Element)content;
if (XML_NODETYPE.equals(el.getLocalName()) && NodeTypeConstants.NAMESPACE.isSame(el.getNamespaceURI())) {
String nodetypeName = DomUtil.getText(el);
if (nodetypeName != null && !"".equals(nodetypeName)) {
nodetypeNames.add(nodetypeName);
}
} else {
log.debug("'dcr:nodetype' element expected -> ignoring element '" + ((Element)content).getNodeName() + "'");
}
}
}
/**
* Return a set of nodetype names present in this property.
*
* @return set of nodetype names
*/
public Set getNodeTypeNames() {
return nodetypeNames;
}
/**
* Returns the value of this property which is a Set of nodetype names.
*
* @return a Set of nodetype names (String).
*/
public Object getValue() {
return nodetypeNames;
}
/**
* @see org.apache.jackrabbit.webdav.xml.XmlSerializable#toXml(Document)
*/
public Element toXml(Document document) {
Element elem = getName().toXml(document);
Iterator it = getNodeTypeNames().iterator();
while (it.hasNext()) {
String name = it.next().toString();
Element ntElem = DomUtil.addChildElement(elem, XML_NODETYPE, NodeTypeConstants.NAMESPACE);
DomUtil.addChildElement(ntElem, XML_NODETYPENAME, NodeTypeConstants.NAMESPACE, name);
}
return elem;
}
}