Klasse Response

java.lang.Object
de.svws_nrw.davapi.model.dav.Response

public class Response extends Object

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>
 
  • Felddetails

    • href

      protected List<String> href
      Eine Liste von href-Strings, die die Links darstellen.
    • status

      protected String status
      Die Status Eigenschaft.
    • propstat

      protected List<Propstat> propstat
      Eine Liste der Propstat-Objekte.
    • error

      protected Error error
      Das Propstat-Objekt.
    • responsedescription

      protected String responsedescription
      Der Response-String einer Antwort.
    • location

      protected Location location
      Das Location-Objekt.
  • Konstruktordetails

    • Response

      public Response()
      Leerer Standardkonstruktor.
  • Methodendetails

    • getHref

      public List<String> 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

      public String getStatus()
      Gets the value of the status property.
      Gibt zurück:
      possible object is String
    • setStatus

      public void setStatus(String value)
      Sets the value of the status property.
      Parameter:
      value - allowed object is String
    • getPropstat

      public List<Propstat> 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

      public Error getError()
      Gets the value of the error property.
      Gibt zurück:
      possible object is Error
    • setError

      public void setError(Error value)
      Sets the value of the error property.
      Parameter:
      value - allowed object is Error
    • getResponsedescription

      public String getResponsedescription()
      Gets the value of the responsedescription property.
      Gibt zurück:
      possible object is String
    • setResponsedescription

      public void setResponsedescription(String value)
      Sets the value of the responsedescription property.
      Parameter:
      value - allowed object is String
    • getLocation

      public Location getLocation()
      Gets the value of the location property.
      Gibt zurück:
      possible object is Location
    • setLocation

      public void setLocation(Location value)
      Sets the value of the location property.
      Parameter:
      value - allowed object is Location