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 AttributeDescription complex type. 019 * 020 * <p>The following schema fragment specifies the expected content contained within this class. 021 * 022 * <pre> 023 * <complexType name="AttributeDescription"> 024 * <complexContent> 025 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> 026 * <attribute name="name" use="required" type="{urn:oasis:names:tc:DSML:2:0:core}AttributeDescriptionValue" /> 027 * </restriction> 028 * </complexContent> 029 * </complexType> 030 * </pre> 031 * 032 * 033 */ 034@XmlAccessorType(XmlAccessType.FIELD) 035@XmlType(name = "AttributeDescription", namespace = "urn:oasis:names:tc:DSML:2:0:core") 036public class AttributeDescription { 037 038 @XmlAttribute(name = "name", required = true) 039 protected String name; 040 041 /** 042 * Gets the value of the name property. 043 * 044 * @return 045 * possible object is 046 * {@link String } 047 * 048 */ 049 public String getName() { 050 return name; 051 } 052 053 /** 054 * Sets the value of the name property. 055 * 056 * @param value 057 * allowed object is 058 * {@link String } 059 * 060 */ 061 public void setName(String value) { 062 this.name = value; 063 } 064 065}