Uses of Class
org.apache.jackrabbit.webdav.xml.Namespace

Packages that use Namespace
org.apache.jackrabbit.webdav   
org.apache.jackrabbit.webdav.lock Provides interfaces and classes for locking related issues. 
org.apache.jackrabbit.webdav.observation Contains interfaces and classes related to observation, which is not covered by the WebDAV protocol. 
org.apache.jackrabbit.webdav.ordering Contains interfaces and classes used to cover the functionality defined by the RFC 3648: Web Distributed Authoring and Versioning (WebDAV) Ordered Collections Protocol
org.apache.jackrabbit.webdav.property Interfaces and classes related to WebDAV properties. 
org.apache.jackrabbit.webdav.search Contains interfaces and classes used to cover the functionality defined by the Internet Draft WebDAV Search
org.apache.jackrabbit.webdav.transaction Contains interfaces and classes related to transaction locks. 
org.apache.jackrabbit.webdav.version Interfaces and classes used to cover functionality defined by RFC 3253: Versioning Extensions to WebDAV
org.apache.jackrabbit.webdav.version.report Report interface and inplementation for default reports defined by RFC 3253. 
org.apache.jackrabbit.webdav.xml Xml utility classes. 
 

Uses of Namespace in org.apache.jackrabbit.webdav
 

Fields in org.apache.jackrabbit.webdav declared as Namespace
static Namespace DavConstants.NAMESPACE
          Default Namespace constant
 

Uses of Namespace in org.apache.jackrabbit.webdav.lock
 

Methods in org.apache.jackrabbit.webdav.lock with parameters of type Namespace
static Scope Scope.create(String localName, Namespace namespace)
          Create a Scope object from the given name and namespace.
static Type Type.create(String localName, Namespace namespace)
          Create a Type object from the given localName and namespace.
 

Uses of Namespace in org.apache.jackrabbit.webdav.observation
 

Fields in org.apache.jackrabbit.webdav.observation declared as Namespace
static Namespace ObservationConstants.NAMESPACE
          The namespace
 

Methods in org.apache.jackrabbit.webdav.observation that return Namespace
 Namespace EventType.getNamespace()
           
 Namespace Filter.getNamespace()
           
 

Methods in org.apache.jackrabbit.webdav.observation with parameters of type Namespace
 Filter[] SubscriptionInfo.getFilters(String localName, Namespace namespace)
          Return array of filters with the specified name.
 boolean Filter.isMatchingFilter(String localName, Namespace namespace)
           
 

Constructors in org.apache.jackrabbit.webdav.observation with parameters of type Namespace
Filter(String filterName, Namespace filterNamespace, String filterValue)
           
 

Uses of Namespace in org.apache.jackrabbit.webdav.ordering
 

Fields in org.apache.jackrabbit.webdav.ordering declared as Namespace
static Namespace OrderingConstants.NAMESPACE
          The namespace
 

Uses of Namespace in org.apache.jackrabbit.webdav.property
 

Methods in org.apache.jackrabbit.webdav.property that return Namespace
 Namespace DavPropertyName.getNamespace()
          Return the namespace of this DavPropertyName.
 

Methods in org.apache.jackrabbit.webdav.property with parameters of type Namespace
static int ResourceType.registerResourceType(String name, Namespace namespace)
          Register an additional resource type
 DavProperty DavPropertySet.get(String name, Namespace namespace)
          Retrieves the property with the specified name and namespace.
 DavProperty DavPropertySet.remove(String name, Namespace namespace)
          Removes the property with the specified name and namespace from this set.
 DavPropertyIterator DavPropertySet.iterator(Namespace namespace)
          Returns an iterator over all those property in this set, that have the indicated namespace.
static DavPropertyName DavPropertyName.create(String name, Namespace namespace)
          Creates a new DavPropertyName with the given name and Namespace.
 

Constructors in org.apache.jackrabbit.webdav.property with parameters of type Namespace
DefaultDavProperty(String name, Object value, Namespace namespace, boolean isProtected)
          Creates a new WebDAV property with the given namespace, name and value.
DefaultDavProperty(String name, Object value, Namespace namespace)
          Creates a new non-protected WebDAV property with the given namespace, name and value.
 

Uses of Namespace in org.apache.jackrabbit.webdav.search
 

Fields in org.apache.jackrabbit.webdav.search declared as Namespace
static Namespace SearchConstants.NAMESPACE
          Namespace definition.
NOTE: For convenience reasons, the namespace is defined to be the default DAV: namespace.
 

Methods in org.apache.jackrabbit.webdav.search that return Namespace
 Namespace SearchInfo.getLanguageNameSpace()
          Returns the namespace of the language specified with the search request element.
 

Methods in org.apache.jackrabbit.webdav.search with parameters of type Namespace
 void QueryGrammerSet.addQueryLanguage(String grammerName, Namespace namespace)
          Add another query queryGrammer to this set.
 

Constructors in org.apache.jackrabbit.webdav.search with parameters of type Namespace
SearchInfo(String language, Namespace languageNamespace, String query)
          Create a new SearchInfo instance.
 

Uses of Namespace in org.apache.jackrabbit.webdav.transaction
 

Fields in org.apache.jackrabbit.webdav.transaction declared as Namespace
static Namespace TransactionConstants.NAMESPACE
          Namespace for transaction related xml elements
 

Uses of Namespace in org.apache.jackrabbit.webdav.version
 

Fields in org.apache.jackrabbit.webdav.version declared as Namespace
static Namespace DeltaVConstants.NAMESPACE
          The DAV: namespace.
 

Methods in org.apache.jackrabbit.webdav.version with parameters of type Namespace
 void OptionsResponse.addEntry(String localName, Namespace namespace, String[] hrefs)
          Add a new entry to this OptionsResponse and make each href present in the String array being a separate DAV:href element within the entry.
 String[] OptionsResponse.getHrefs(String localName, Namespace namespace)
           
 boolean OptionsInfo.containsElement(String localName, Namespace namespace)
          Returns true if a child element with the given name and namespace is present.
 

Uses of Namespace in org.apache.jackrabbit.webdav.version.report
 

Methods in org.apache.jackrabbit.webdav.version.report that return Namespace
 Namespace ReportType.getNamespace()
           
 

Methods in org.apache.jackrabbit.webdav.version.report with parameters of type Namespace
 boolean ReportInfo.containsContentElement(String localName, Namespace namespace)
          Indicates whether this info contains an element with the given name/namespace.
 Element ReportInfo.getContentElement(String localName, Namespace namespace)
          Retrieves the Xml element with the given name/namespace that is a child of this info.
 List ReportInfo.getContentElements(String localName, Namespace namespace)
          Returns a list containing all child Xml elements of this info that have the specified name/namespace.
static ReportType ReportType.register(String localName, Namespace namespace, Class reportClass)
          Register the report type with the given name, namespace and class, that can run that report.
 

Uses of Namespace in org.apache.jackrabbit.webdav.xml
 

Fields in org.apache.jackrabbit.webdav.xml declared as Namespace
static Namespace Namespace.EMPTY_NAMESPACE
           
 

Methods in org.apache.jackrabbit.webdav.xml that return Namespace
static Namespace DomUtil.getNamespace(Element element)
          Build a Namespace from the prefix and uri retrieved from the given element.
static Namespace Namespace.getNamespace(String prefix, String uri)
           
static Namespace Namespace.getNamespace(String uri)
           
 

Methods in org.apache.jackrabbit.webdav.xml with parameters of type Namespace
static String DomUtil.getAttribute(Element parent, String localName, Namespace namespace)
          Returns the value of the named attribute of the current element.
static String DomUtil.getChildText(Element parent, String childLocalName, Namespace childNamespace)
          Calls DomUtil.getText(Element) on the first child element that matches the given local name and namespace.
static String DomUtil.getChildTextTrim(Element parent, String childLocalName, Namespace childNamespace)
          Calls DomUtil.getTextTrim(Element) on the first child element that matches the given local name and namespace.
static boolean DomUtil.hasChildElement(Node parent, String childLocalName, Namespace childNamespace)
          Returns true if the given parent node has a child element that matches the specified local name and namespace.
static Element DomUtil.getChildElement(Node parent, String childLocalName, Namespace childNamespace)
          Returns the first child element that matches the given local name and namespace.
static ElementIterator DomUtil.getChildren(Element parent, String childLocalName, Namespace childNamespace)
          Returns a ElementIterator containing all child elements of the given parent node that match the given local name and namespace.
static boolean DomUtil.matches(Node node, String requiredLocalName, Namespace requiredNamespace)
          Returns true if the specified node matches the required names.
static Element DomUtil.createElement(Document factory, String localName, Namespace namespace)
          Create a new DOM element with the specified local name and namespace.
static Element DomUtil.createElement(Document factory, String localName, Namespace namespace, String text)
          Create a new DOM element with the specified local name and namespace and add the specified text as Text node to it.
static Element DomUtil.addChildElement(Element parent, String localName, Namespace namespace)
          Add a new child element with the given local name and namespace to the specified parent.
static Element DomUtil.addChildElement(Element parent, String localName, Namespace namespace, String text)
          Add a new child element with the given local name and namespace to the specified parent.
static void DomUtil.setAttribute(Element element, String attrLocalName, Namespace attrNamespace, String attrValue)
          Add an attribute node to the given element.
static String DomUtil.getQualifiedName(String localName, Namespace namespace)
          Return a qualified name of a DOM node consisting of "{" + namespace uri + "}" + localName.
static String DomUtil.getPrefixedName(String localName, Namespace namespace)
          Return the prefixed name of a DOM node consisting of namespace prefix + ":" + local name.
 

Constructors in org.apache.jackrabbit.webdav.xml with parameters of type Namespace
ElementIterator(Element parent, String localName, Namespace namespace)
          Create a new instance of ElementIterator with the given parent element.
 



Copyright © 2005-2006 . All Rights Reserved.