Klasse Propertyupdate

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

public class Propertyupdate 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">
       <choice maxOccurs="unbounded">
         <element ref="{DAV:}remove"/>
         <element ref="{DAV:}set"/>
       </choice>
     </restriction>
   </complexContent>
 </complexType>
 
  • Konstruktordetails

    • Propertyupdate

      public Propertyupdate()
      Leerer Standardkonstruktor.
  • Methodendetails

    • getRemoveOrSet

      public List<Object> getRemoveOrSet()
      Liefert eine modifizierbare Liste der Entfernen-Setzen-Operationen.

      Diese Zugriffsmethode gibt eine Referenz auf die live-Liste zurück, nicht auf eine Kopie. Daher werden alle Änderungen, die an der zurückgegebenen Liste vorgenommen werden, im JAXB-Objekt sichtbar sein. Aus diesem Grund gibt es keine set-Methode für die Eigenschaft removeOrSet.

      Um beispielsweise ein neues Element hinzuzufügen, gehen Sie wie folgt vor:

          getRemoveOrSet().add(neuesElement);
       

      Erlaubte Objekttypen in der Liste sind: Remove und Set.

      Gibt zurück:
      eine modifizierbare Liste der Entfernen-Setzen-Operationen.