Examples of SupportedMethodSetProperty


Examples of org.apache.jackrabbit.webdav.version.SupportedMethodSetProperty

        // observation resource
        SubscriptionDiscovery subsDiscovery = subsMgr.getSubscriptionDiscovery(this);
        properties.add(subsDiscovery);

        properties.add(new SupportedMethodSetProperty(getSupportedMethods().split(",\\s")));

  // DeltaV properties
  properties.add(supportedReports);
  // creator-displayname, comment: not value available from jcr
  properties.add(new DefaultDavProperty(DeltaVConstants.CREATOR_DISPLAYNAME, null, true));
View Full Code Here

Examples of org.apache.jackrabbit.webdav.version.SupportedMethodSetProperty

        // set current lock information. If no lock is applied to this resource,
        // an empty xlockdiscovery will be returned in the response.
        properties.add(new LockDiscovery(getLocks()));

        properties.add(new SupportedMethodSetProperty(getSupportedMethods().split(",\\s")));

        // DeltaV properties
        properties.add(supportedReports);
        // DAV:creator-displayname default value : not available
        properties.add(new DefaultDavProperty<String>(DeltaVConstants.CREATOR_DISPLAYNAME, null, true));
View Full Code Here

Examples of org.apache.jackrabbit.webdav.version.SupportedMethodSetProperty

        // observation resource
        SubscriptionDiscovery subsDiscovery = subsMgr.getSubscriptionDiscovery(this);
        properties.add(subsDiscovery);

        properties.add(new SupportedMethodSetProperty(getSupportedMethods().split(",\\s")));

  // DeltaV properties
  properties.add(supportedReports);
  // creator-displayname, comment: not value available from jcr
  properties.add(new DefaultDavProperty(DeltaVConstants.CREATOR_DISPLAYNAME, null, true));
View Full Code Here

Examples of org.apache.jackrabbit.webdav.version.SupportedMethodSetProperty

        // observation resource
        SubscriptionDiscovery subsDiscovery = subsMgr.getSubscriptionDiscovery(this);
        properties.add(subsDiscovery);

        properties.add(new SupportedMethodSetProperty(getSupportedMethods().split(",\\s")));

  // DeltaV properties
  properties.add(supportedReports);
  // creator-displayname, comment: not value available from jcr
  properties.add(new DefaultDavProperty(DeltaVConstants.CREATOR_DISPLAYNAME, null, true));
View Full Code Here

Examples of org.apache.jackrabbit.webdav.version.SupportedMethodSetProperty

     */
    public DavProperty<?> getProperty(DavPropertyName name) {
        DavProperty prop = getProperties().get(name);
        if (prop == null) {
            if (DeltaVConstants.SUPPORTED_METHOD_SET.equals(name)) {
                prop = new SupportedMethodSetProperty(getSupportedMethods().split(",\\s"));
            } else if (DeltaVConstants.SUPPORTED_REPORT_SET.equals(name)) {
                prop = supportedReports;
            } else if (DeltaVConstants.CREATOR_DISPLAYNAME.equals(name)) {
                // DAV:creator-displayname default value : not available
                prop = new DefaultDavProperty<String>(DeltaVConstants.CREATOR_DISPLAYNAME, getCreatorDisplayName(), true);
View Full Code Here

Examples of org.apache.jackrabbit.webdav.version.SupportedMethodSetProperty

        // set current lock information. If no lock is applied to this resource,
        // an empty lockdiscovery will be returned in the response.
        properties.add(new LockDiscovery(getLocks()));

        properties.add(new SupportedMethodSetProperty(getSupportedMethods().split(",\\s")));

  // DeltaV properties
  properties.add(supportedReports);
  // creator-displayname, comment: not value available from jcr
  properties.add(new DefaultDavProperty(DeltaVConstants.CREATOR_DISPLAYNAME, null, true));
View Full Code Here

Examples of org.apache.jackrabbit.webdav.version.SupportedMethodSetProperty

     */
    public DavProperty<?> getProperty(DavPropertyName name) {
        DavProperty prop = getProperties().get(name);
        if (prop == null) {
            if (DeltaVConstants.SUPPORTED_METHOD_SET.equals(name)) {
                prop = new SupportedMethodSetProperty(getSupportedMethods().split(",\\s"));
            } else if (DeltaVConstants.SUPPORTED_REPORT_SET.equals(name)) {
                prop = supportedReports;
            } else if (DeltaVConstants.CREATOR_DISPLAYNAME.equals(name)) {
                // DAV:creator-displayname default value : not available
                prop = new DefaultDavProperty<String>(DeltaVConstants.CREATOR_DISPLAYNAME, getCreatorDisplayName(), true);
View Full Code Here

Examples of org.apache.jackrabbit.webdav.version.SupportedMethodSetProperty

        // set current lock information. If no lock is applied to this resource,
        // an empty lockdiscovery will be returned in the response.
        properties.add(new LockDiscovery(getLocks()));

        properties.add(new SupportedMethodSetProperty(getSupportedMethods().split(",\\s")));

        // DeltaV properties
        properties.add(supportedReports);
        // creator-displayname, comment: not value available from jcr
        properties.add(new DefaultDavProperty(DeltaVConstants.CREATOR_DISPLAYNAME, null, true));
View Full Code Here

Examples of org.apache.jackrabbit.webdav.version.SupportedMethodSetProperty

        // set current lock information. If no lock is applied to this resource,
        // an empty lockdiscovery will be returned in the response.
        properties.add(new LockDiscovery(getLocks()));

        properties.add(new SupportedMethodSetProperty(getSupportedMethods().split(",\\s")));

  // DeltaV properties
  properties.add(supportedReports);
  // creator-displayname, comment: not value available from jcr
  properties.add(new DefaultDavProperty(DeltaVConstants.CREATOR_DISPLAYNAME, null, true));
View Full Code Here

Examples of org.apache.jackrabbit.webdav.version.SupportedMethodSetProperty

        // set current lock information. If no lock is applied to this resource,
        // an empty lockdiscovery will be returned in the response.
        properties.add(new LockDiscovery(getLocks()));

        properties.add(new SupportedMethodSetProperty(getSupportedMethods().split(",\\s")));

        // DeltaV properties
        properties.add(supportedReports);
        // creator-displayname, comment: not value available from jcr
        properties.add(new DefaultDavProperty(DeltaVConstants.CREATOR_DISPLAYNAME, null, true));
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.