Klasse Response
Java class for anonymous complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element ref="{DAV:}href" maxOccurs="unbounded"/> <choice> <sequence> <element ref="{DAV:}status"/> </sequence> <element ref="{DAV:}propstat" maxOccurs="unbounded"/> </choice> <element ref="{DAV:}error" minOccurs="0"/> <element ref="{DAV:}responsedescription" minOccurs="0"/> <element ref="{DAV:}location" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
Feldübersicht
-
Konstruktorübersicht
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibunggetError()
Gets the value of the error property.getHref()
Gibt die Liste der href-Inhalte zurück.Gets the value of the location property.Gibt die Liste der Propstat-Inhalte zurück.Gets the value of the responsedescription property.Gets the value of the status property.void
Sets the value of the error property.void
setLocation
(Location value) Sets the value of the location property.void
setResponsedescription
(String value) Sets the value of the responsedescription property.void
Sets the value of the status property.
-
Felddetails
-
Konstruktordetails
-
Response
public Response()Leerer Standardkonstruktor.
-
-
Methodendetails
-
getHref
Gibt die Liste der href-Inhalte zurück.Diese Zugriffsmethode gibt eine Referenz auf die live-Liste zurück, nicht auf eine Kopie. Daher sind alle Änderungen, die Sie an der zurückgegebenen Liste vornehmen, im JAXB-Objekt sichtbar. Aus diesem Grund gibt es keine
set
-Methode.Um beispielsweise ein neues Element hinzuzufügen, gehen Sie wie folgt vor:
getHref().add(neuesElement);
Objekte des folgenden Typs sind in der Liste erlaubt:
String
- Gibt zurück:
- eine modifizierbare Liste von href-Strings. Die Liste ist nie null.
-
getStatus
Gets the value of the status property.- Gibt zurück:
- possible object is
String
-
setStatus
Sets the value of the status property.- Parameter:
value
- allowed object isString
-
getPropstat
Gibt die Liste der Propstat-Inhalte zurück.Diese Methode gibt eine Referenz auf die live-Liste zurück, nicht auf eine Kopie. Änderungen an dieser Liste wirken sich direkt auf das JAXB-Objekt aus. Daher gibt es keine
set
-Methode.Um ein neues Element hinzuzufügen, verwenden Sie bitte folgenden Code:
getPropstat().add(neuesElement);
In dieser Liste sind Objekte des folgenden Typs erlaubt:
Propstat
- Gibt zurück:
- eine modifizierbare Liste von Propstat-Inhalten. Die Liste ist niemals null.
-
getError
Gets the value of the error property.- Gibt zurück:
- possible object is
Error
-
setError
Sets the value of the error property.- Parameter:
value
- allowed object isError
-
getResponsedescription
Gets the value of the responsedescription property.- Gibt zurück:
- possible object is
String
-
setResponsedescription
Sets the value of the responsedescription property.- Parameter:
value
- allowed object isString
-
getLocation
Gets the value of the location property.- Gibt zurück:
- possible object is
Location
-
setLocation
Sets the value of the location property.- Parameter:
value
- allowed object isLocation
-