// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-793 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2009.07.03 at 05:59:50 PM CEST // package com.sun.jersey.json.impl.rim; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * Represents an action on a set of affected RegistryObjects within an AuditableEvent. * * <p>Java class for ActionType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="ActionType"> * <complexContent> * <extension base="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:4.0}ExtensibleObjectType"> * <sequence> * <element name="AffectedObjects" type="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:4.0}RegistryObjectListType" minOccurs="0"/> * <element name="AffectedObjectRefs" type="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:4.0}ObjectRefListType" minOccurs="0"/> * </sequence> * <attribute name="eventType" use="required" type="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:4.0}objectReferenceType" /> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ActionType", propOrder = { "affectedObjects", "affectedObjectRefs" }) public class ActionType extends ExtensibleObjectType { @XmlElement(name = "AffectedObjects") protected RegistryObjectListType affectedObjects; @XmlElement(name = "AffectedObjectRefs") protected ObjectRefListType affectedObjectRefs; @XmlAttribute(required = true) protected String eventType; /** * Gets the value of the affectedObjects property. * * @return * possible object is * {@link RegistryObjectListType } * */ public RegistryObjectListType getAffectedObjects() { return affectedObjects; } /** * Sets the value of the affectedObjects property. * * @param value * allowed object is * {@link RegistryObjectListType } * */ public void setAffectedObjects(RegistryObjectListType value) { this.affectedObjects = value; } /** * Gets the value of the affectedObjectRefs property. * * @return * possible object is * {@link ObjectRefListType } * */ public ObjectRefListType getAffectedObjectRefs() { return affectedObjectRefs; } /** * Sets the value of the affectedObjectRefs property. * * @param value * allowed object is * {@link ObjectRefListType } * */ public void setAffectedObjectRefs(ObjectRefListType value) { this.affectedObjectRefs = value; } /** * Gets the value of the eventType property. * * @return * possible object is * {@link String } * */ public String getEventType() { return eventType; } /** * Sets the value of the eventType property. * * @param value * allowed object is * {@link String } * */ public void setEventType(String value) { this.eventType = value; } }