001// 002// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 003// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 004// Any modifications to this file will be lost upon recompilation of the source schema. 005// Generated on: 2015.08.26 at 05:38:23 AM CEST 006// 007 008 009package org.opends.dsml.protocol; 010 011import javax.xml.bind.annotation.XmlAccessType; 012import javax.xml.bind.annotation.XmlAccessorType; 013import javax.xml.bind.annotation.XmlElement; 014import javax.xml.bind.annotation.XmlType; 015 016 017/** 018 * <p>Java class for ExtendedRequest complex type. 019 * 020 * <p>The following schema fragment specifies the expected content contained within this class. 021 * 022 * <pre> 023 * <complexType name="ExtendedRequest"> 024 * <complexContent> 025 * <extension base="{urn:oasis:names:tc:DSML:2:0:core}DsmlMessage"> 026 * <sequence> 027 * <element name="requestName" type="{urn:oasis:names:tc:DSML:2:0:core}NumericOID"/> 028 * <element name="requestValue" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/> 029 * </sequence> 030 * </extension> 031 * </complexContent> 032 * </complexType> 033 * </pre> 034 * 035 * 036 */ 037@XmlAccessorType(XmlAccessType.FIELD) 038@XmlType(name = "ExtendedRequest", namespace = "urn:oasis:names:tc:DSML:2:0:core", propOrder = { 039 "requestName", 040 "requestValue" 041}) 042public class ExtendedRequest 043 extends DsmlMessage 044{ 045 046 @XmlElement(namespace = "urn:oasis:names:tc:DSML:2:0:core", required = true) 047 protected String requestName; 048 @XmlElement(namespace = "urn:oasis:names:tc:DSML:2:0:core") 049 protected Object requestValue; 050 051 /** 052 * Gets the value of the requestName property. 053 * 054 * @return 055 * possible object is 056 * {@link String } 057 * 058 */ 059 public String getRequestName() { 060 return requestName; 061 } 062 063 /** 064 * Sets the value of the requestName property. 065 * 066 * @param value 067 * allowed object is 068 * {@link String } 069 * 070 */ 071 public void setRequestName(String value) { 072 this.requestName = value; 073 } 074 075 /** 076 * Gets the value of the requestValue property. 077 * 078 * @return 079 * possible object is 080 * {@link Object } 081 * 082 */ 083 public Object getRequestValue() { 084 return requestValue; 085 } 086 087 /** 088 * Sets the value of the requestValue property. 089 * 090 * @param value 091 * allowed object is 092 * {@link Object } 093 * 094 */ 095 public void setRequestValue(Object value) { 096 this.requestValue = value; 097 } 098 099}