blob: 5ffa3ab53e46c18a3ada3ab675f1654a9351efb6 [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.property;
import org.apache.log4j.Logger;
import org.apache.jackrabbit.webdav.xml.Namespace;
import org.apache.jackrabbit.webdav.xml.DomUtil;
import org.w3c.dom.Element;
import org.w3c.dom.Node;
import java.util.List;
/**
* <code>DefaultDavProperty</code>...
*/
public class DefaultDavProperty extends AbstractDavProperty {
private static Logger log = Logger.getLogger(DefaultDavProperty.class);
/**
* the value of the property
*/
private final Object value;
/**
* Creates a new WebDAV property with the given namespace, name and value.
* If the property is intended to be protected the isProtected flag must
* be set to true.
*
* @param name the name of the property
* @param value the value of the property
* @param namespace the namespace of the property
* @param isProtected A value of true, defines this property to be protected.
* It will not be returned in a {@link org.apache.jackrabbit.webdav.DavConstants#PROPFIND_ALL_PROP DAV:allprop}
* PROPFIND request and cannot be set/removed with a PROPPATCH request.
*/
public DefaultDavProperty(String name, Object value, Namespace namespace, boolean isProtected) {
super(DavPropertyName.create(name, namespace), isProtected);
this.value = value;
}
/**
* Creates a new non-protected WebDAV property with the given namespace, name
* and value.
*
* @param name the name of the property
* @param value the value of the property
* @param namespace the namespace of the property
*/
public DefaultDavProperty(String name, Object value, Namespace namespace) {
this(name, value, namespace, false);
}
/**
* Creates a new WebDAV property with the given <code>DavPropertyName</code>
* and value. If the property is meant to be protected the 'isProtected'
* flag must be set to true.
*
* @param name the name of the property
* @param value the value of the property
* @param isProtected A value of true, defines this property to be protected.
* It will not be returned in a {@link org.apache.jackrabbit.webdav.DavConstants#PROPFIND_ALL_PROP DAV:allprop}
* PROPFIND request and cannot be set/removed with a PROPPATCH request.
*/
public DefaultDavProperty(DavPropertyName name, Object value, boolean isProtected) {
super(name, isProtected);
this.value = value;
}
/**
* Creates a new non- protected WebDAV property with the given
* <code>DavPropertyName</code> and value.
*
* @param name the name of the property
* @param value the value of the property
*/
public DefaultDavProperty(DavPropertyName name, Object value) {
this(name, value, false);
}
/**
* Returns the value of this property
*
* @return the value of this property
*/
public Object getValue() {
return value;
}
/**
* Create a new <code>DefaultDavProperty</code> instance from the given Xml
* element. Name and namespace of the element are building the {@link DavPropertyName},
* while the element's content forms the property value. The following logic
* is applied:
* <pre>
* - empty Element -&gt; <code>null</code> value
* - single Text content -&gt; <code>String</code> value
* - single non-Text content -&gt; Element.getContent(0) is used as value
* - other: List obtained from Element.getContent() is used as value
* </pre>
*
* @param propertyElement
* @return
*/
public static DefaultDavProperty createFromXml(Element propertyElement) {
if (propertyElement == null) {
throw new IllegalArgumentException("Cannot create a new DavProperty from a 'null' element.");
}
DavPropertyName name = DavPropertyName.createFromXml(propertyElement);
Object value;
if (!DomUtil.hasContent(propertyElement)) {
value = null;
} else {
List c = DomUtil.getContent(propertyElement);
if (c.size() == 1) {
Node n = (Node)c.get(0);
if (n instanceof Element) {
value = n;
} else {
value = n.getNodeValue();
}
} else /* size > 1 */ {
value = c;
}
}
return new DefaultDavProperty(name, value, false);
}
}