Package org.w3c.www.protocol.webdav

Source Code of org.w3c.www.protocol.webdav.DAVReply

// DAVReply.java
// $Id: DAVReply.java,v 1.1 2000/10/11 13:20:08 bmahe Exp $
// (c) COPYRIGHT MIT, INRIA and Keio, 2000.
// Please first read the full copyright statement in file COPYRIGHT.html
package org.w3c.www.protocol.webdav;

import org.w3c.www.mime.MimeParser;

import org.w3c.www.protocol.http.Reply;

import org.w3c.www.http.HeaderValue;

import org.w3c.www.webdav.WEBDAV;
import org.w3c.www.webdav.DAVStatusURIList;
import org.w3c.www.webdav.DAVStatusURI;

/**
* @version $Revision: 1.1 $
* @author  Beno�t Mah� (bmahe@w3.org)
*/
public class DAVReply extends Reply implements WEBDAV {
   
    static {
  registerHeader(DAV_HEADER,
           "org.w3c.www.http.HttpString");
  registerHeader(LOCK_TOKEN_HEADER,
           "org.w3c.www.http.HttpString");
  registerHeader(STATUS_URI_HEADER,
           "org.w3c.www.webdav.DAVStatusURIList");
    }

    public String getLockToken() {
  HeaderValue value = getHeaderValue(LOCK_TOKEN_HEADER);
  return (value != null) ? (String) value.getValue() : null;
    }

    public DAVStatusURI[] getStatusURI() {
  HeaderValue value = getHeaderValue(STATUS_URI_HEADER);
  return (value != null) ? (DAVStatusURI[]) value.getValue() : null;
    }

    public String getDAVHeader() {
  HeaderValue value = getHeaderValue(DAV_HEADER);
  return (value != null) ? (String) value.getValue() : null;
    }
   

    protected DAVReply(short major, short minor, int status) {
  super(major, minor, status);
    }

    protected DAVReply(MimeParser parser) {
  super(parser);
    }

}
TOP

Related Classes of org.w3c.www.protocol.webdav.DAVReply

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.