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.XmlAttribute; 014import javax.xml.bind.annotation.XmlType; 015 016 017/** 018 * <p>Java class for DelRequest complex type. 019 * 020 * <p>The following schema fragment specifies the expected content contained within this class. 021 * 022 * <pre> 023 * <complexType name="DelRequest"> 024 * <complexContent> 025 * <extension base="{urn:oasis:names:tc:DSML:2:0:core}DsmlMessage"> 026 * <attribute name="dn" use="required" type="{urn:oasis:names:tc:DSML:2:0:core}DsmlDN" /> 027 * </extension> 028 * </complexContent> 029 * </complexType> 030 * </pre> 031 * 032 * 033 */ 034@XmlAccessorType(XmlAccessType.FIELD) 035@XmlType(name = "DelRequest", namespace = "urn:oasis:names:tc:DSML:2:0:core") 036public class DelRequest 037 extends DsmlMessage 038{ 039 040 @XmlAttribute(name = "dn", required = true) 041 protected String dn; 042 043 /** 044 * Gets the value of the dn property. 045 * 046 * @return 047 * possible object is 048 * {@link String } 049 * 050 */ 051 public String getDn() { 052 return dn; 053 } 054 055 /** 056 * Sets the value of the dn property. 057 * 058 * @param value 059 * allowed object is 060 * {@link String } 061 * 062 */ 063 public void setDn(String value) { 064 this.dn = value; 065 } 066 067}