|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.wink.webdav.model.Propfind
public class Propfind
The propfind
XML element per the WebDAV specification [RFC 4918]
Name: propfind Namespace: DAV: Purpose: Specifies the properties to be returned from a PROPFIND method. Two special elements are specified for use with propfind, allprop and propname. If prop is used inside propfind it MUST only contain property names, not values. <!ELEMENT propfind (allprop | propname | prop) >
Field Summary | |
---|---|
protected Allprop |
allprop
|
protected Prop |
prop
|
protected Propname |
propname
|
Constructor Summary | |
---|---|
Propfind()
|
Method Summary | |
---|---|
Allprop |
getAllprop()
Gets the value of the allprop property. |
Prop |
getProp()
Gets the value of the prop property. |
Propname |
getPropname()
Gets the value of the propname property. |
boolean |
isAllprop()
|
boolean |
isPropname()
|
static void |
marshal(Propfind instance,
java.io.OutputStream os)
Marshal a Propfind object to the provided output stream |
static void |
marshal(Propfind instance,
java.io.Writer writer)
Marshal a Propfind object to the provided writer |
void |
setAllprop(Allprop value)
Sets the value of the allprop property. |
void |
setProp(Prop value)
Sets the value of the prop property. |
void |
setPropname(Propname value)
Sets the value of the propname property. |
static Propfind |
unmarshal(java.io.InputStream is)
Unmarshal a Propfind object from the provided input stream |
static Propfind |
unmarshal(java.io.Reader reader)
Unmarshal a Propfind object from the provided reader |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
protected Allprop allprop
protected Propname propname
protected Prop prop
Constructor Detail |
---|
public Propfind()
Method Detail |
---|
public Allprop getAllprop()
Allprop
public void setAllprop(Allprop value)
value
- allowed object is Allprop
public Propname getPropname()
Propname
public void setPropname(Propname value)
value
- allowed object is Propname
public Prop getProp()
Prop
public void setProp(Prop value)
value
- allowed object is Prop
public boolean isAllprop()
public boolean isPropname()
public static Propfind unmarshal(java.io.InputStream is) throws java.io.IOException
is
- the input stream
java.io.IOException
public static void marshal(Propfind instance, java.io.OutputStream os) throws java.io.IOException
instance
- the Propfind instance to marshaloutputStreamWriter
- the output stream
java.io.IOException
public static Propfind unmarshal(java.io.Reader reader) throws java.io.IOException
reader
- the input reader
java.io.IOException
public static void marshal(Propfind instance, java.io.Writer writer) throws java.io.IOException
instance
- the Profind instance to marshalwriter
- the output writer
java.io.IOException
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |