org.apache.jackrabbit.webdav.property.DavPropertyNameSet Maven / Gradle / Ivy
/*
* 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.apache.jackrabbit.webdav.xml.ElementIterator;
import org.apache.jackrabbit.webdav.xml.Namespace;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.w3c.dom.Element;
import java.util.Collection;
import java.util.HashSet;
import java.util.Iterator;
import java.util.Set;
/**
* DavPropertyNameSet
represents a Set of {@link DavPropertyName}
* objects.
*/
public class DavPropertyNameSet extends PropContainer
implements Iterable {
private static Logger log = LoggerFactory.getLogger(DavPropertyNameSet.class);
private final Set set = new HashSet();
/**
* Create a new empty set.
*/
public DavPropertyNameSet() {
}
/**
* Create a new DavPropertyNameSet
with the given initial values.
*
* @param initialSet
*/
public DavPropertyNameSet(DavPropertyNameSet initialSet) {
addAll(initialSet);
}
/**
* Create a new DavPropertyNameSet
from the given DAV:prop
* element.
*
* @param propElement
* @throws IllegalArgumentException if the specified element is null
* or is not a DAV:prop element.
*/
public DavPropertyNameSet(Element propElement) {
if (!DomUtil.matches(propElement, XML_PROP, NAMESPACE)) {
throw new IllegalArgumentException("'DAV:prop' element expected.");
}
// fill the set
ElementIterator it = DomUtil.getChildren(propElement);
while (it.hasNext()) {
add(DavPropertyName.createFromXml(it.nextElement()));
}
}
/**
* Adds the specified {@link DavPropertyName} object to this
* set if it is not already present.
*
* @param propertyName element to be added to this set.
* @return {@code true} if the set did not already contain the specified
* element.
*/
public boolean add(DavPropertyName propertyName) {
return set.add(propertyName);
}
/**
* Creates a DavPropertyName from the given parameters and add it to this set.
*
* @param localName
* @param namespace
* @return {@code true} if the set did not already contain the specified
* property name.
*/
public boolean add(String localName, Namespace namespace) {
return set.add(DavPropertyName.create(localName, namespace));
}
/**
* Add the property names contained in the specified set to this set.
*
* @param propertyNames
* @return true if the set has been modified by this call.
*/
public boolean addAll(DavPropertyNameSet propertyNames) {
return set.addAll(propertyNames.set);
}
/**
* Removes the specified {@link DavPropertyName} object from this set.
*
* @param propertyName
* @return true if the given property name could be removed.
* @see HashSet#remove(Object)
*/
public boolean remove(DavPropertyName propertyName) {
return set.remove(propertyName);
}
/**
* @return Iterator over all DavPropertyName
s contained in this
* set.
*/
public DavPropertyNameIterator iterator() {
return new PropertyNameIterator();
}
//------------------------------------------------------< PropContainer >---
/**
* @see PropContainer#contains(DavPropertyName)
*/
@Override
public boolean contains(DavPropertyName name) {
return set.contains(name);
}
/**
* @param contentEntry NOTE that an instance of DavPropertyName
* in order to successfully add the given entry.
* @return true if contentEntry is an instance of DavPropertyName
* that could be added to this set. False otherwise.
* @see PropContainer#addContent(Object)
*/
@Override
public boolean addContent(PropEntry contentEntry) {
if (contentEntry instanceof DavPropertyName) {
return add((DavPropertyName) contentEntry);
}
log.debug("DavPropertyName object expected. Found: " + contentEntry.getClass().toString());
return false;
}
/**
* @see PropContainer#isEmpty()
*/
@Override
public boolean isEmpty() {
return set.isEmpty();
}
/**
* @see PropContainer#getContentSize()
*/
@Override
public int getContentSize() {
return set.size();
}
/**
* @see PropContainer#getContent()
*/
@Override
public Collection getContent() {
return set;
}
//--------------------------------------------------------< inner class >---
private class PropertyNameIterator implements DavPropertyNameIterator {
private Iterator iter;
private PropertyNameIterator() {
this.iter = set.iterator();
}
public DavPropertyName nextPropertyName() {
return iter.next();
}
public void remove() {
iter.remove();
}
public boolean hasNext() {
return iter.hasNext();
}
public DavPropertyName next() {
return iter.next();
}
}
}