📄 hrefproperty.java
字号:
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You 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.jackrabbit.webdav.xml.DomUtil;import org.slf4j.Logger;import org.slf4j.LoggerFactory;import org.w3c.dom.Document;import org.w3c.dom.Element;import java.util.ArrayList;import java.util.Arrays;import java.util.Iterator;import java.util.List;/** * <code>HrefProperty</code> is an extension to the common {@link DavProperty}. * The String representation of the property value is always displayed as text * inside an extra 'href' element. If the value is a String array each array * element is added as text to a separate 'href' element. * * @see org.apache.jackrabbit.webdav.DavConstants#XML_HREF * @see org.apache.jackrabbit.webdav.property.DavProperty#getValue() */public class HrefProperty extends AbstractDavProperty { private static Logger log = LoggerFactory.getLogger(HrefProperty.class); private final String[] value; /** * Creates a new WebDAV property with the given <code>DavPropertyName</code> * * @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 HrefProperty(DavPropertyName name, String value, boolean isProtected) { super(name, isProtected); this.value = new String[]{value}; } /** * Creates a new WebDAV property with the given <code>DavPropertyName</code> * * @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 HrefProperty(DavPropertyName name, String[] value, boolean isProtected) { super(name, isProtected); this.value = value; } /** * Create a new <code>HrefProperty</code> from the specified property. * Please note, that the property must have a <code>List</code> value * object, consisting of {@link #XML_HREF href} <code>Element</code> entries. * * @param prop */ public HrefProperty(DavProperty prop) { super(prop.getName(), prop.isProtected()); if (prop instanceof HrefProperty) { // already an HrefProperty: no parsing required this.value = ((HrefProperty)prop).value; } else { // assume property has be built from xml ArrayList hrefList = new ArrayList(); Object val = prop.getValue(); if (val instanceof List) { Iterator it = ((List)val).iterator(); while (it.hasNext()) { Object o = it.next(); if (o instanceof Element && XML_HREF.equals(((Element)o).getLocalName())) { String href = DomUtil.getText((Element)o); if (href != null) { hrefList.add(href); } else { log.warn("Valid DAV:href element expected instead of " + o.toString()); } } else { log.warn("DAV: href element expected in the content of " + getName().toString()); } } } else if (val instanceof Element && XML_HREF.equals(((Element)val).getLocalName())) { String href = DomUtil.getTextTrim((Element)val); if (href != null) { hrefList.add(href); } else { log.warn("Valid DAV:href element expected instead of " + val.toString()); } } value = (String[]) hrefList.toArray(new String[hrefList.size()]); } } /** * Returns an Xml element with the following form: * <pre> * <Z:name> * <DAV:href>value</DAV:href/> * </Z:name> * </pre> * where Z: represents the prefix of the namespace defined with the initial * webdav property name. * * @return Xml representation * @see org.apache.jackrabbit.webdav.xml.DomUtil#hrefToXml(String,org.w3c.dom.Document) * @param document */ public Element toXml(Document document) { Element elem = getName().toXml(document); Object value = getValue(); if (value != null) { if (value instanceof String[]) { String[] hrefs = (String[]) value; for (int i = 0; i < hrefs.length; i++) { elem.appendChild(DomUtil.hrefToXml(hrefs[i], document)); } } else { elem.appendChild(DomUtil.hrefToXml(value.toString(), document)); } } return elem; } /** * Returns an array of String. * * @return an array of String. * @see DavProperty#getValue() */ public Object getValue() { return value; } /** * Return an array of String containg the text of those DAV:href elements * that would be returned as child elements of this property on * {@link org.apache.jackrabbit.webdav.xml.XmlSerializable#toXml(Document)} * * @return array of href String */ public List getHrefs() { return (value != null) ? Arrays.asList(value) : new ArrayList(); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -