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.XmlElement; 015import javax.xml.bind.annotation.XmlType; 016 017 018/** 019 * <p>Java class for AttributeValueAssertion complex type. 020 * 021 * <p>The following schema fragment specifies the expected content contained within this class. 022 * 023 * <pre> 024 * <complexType name="AttributeValueAssertion"> 025 * <complexContent> 026 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> 027 * <sequence> 028 * <element name="value" type="{urn:oasis:names:tc:DSML:2:0:core}DsmlValue"/> 029 * </sequence> 030 * <attribute name="name" use="required" type="{urn:oasis:names:tc:DSML:2:0:core}AttributeDescriptionValue" /> 031 * </restriction> 032 * </complexContent> 033 * </complexType> 034 * </pre> 035 * 036 * 037 */ 038@XmlAccessorType(XmlAccessType.FIELD) 039@XmlType(name = "AttributeValueAssertion", namespace = "urn:oasis:names:tc:DSML:2:0:core", propOrder = { 040 "value" 041}) 042public class AttributeValueAssertion { 043 044 @XmlElement(namespace = "urn:oasis:names:tc:DSML:2:0:core", required = true, type = String.class) 045 protected Object value; 046 @XmlAttribute(name = "name", required = true) 047 protected String name; 048 049 /** 050 * Gets the value of the value property. 051 * 052 * @return 053 * possible object is 054 * {@link String } 055 * 056 */ 057 public Object getValue() { 058 return value; 059 } 060 061 /** 062 * Sets the value of the value property. 063 * 064 * @param value 065 * allowed object is 066 * {@link String } 067 * 068 */ 069 public void setValue(Object value) { 070 this.value = value; 071 } 072 073 /** 074 * Gets the value of the name property. 075 * 076 * @return 077 * possible object is 078 * {@link String } 079 * 080 */ 081 public String getName() { 082 return name; 083 } 084 085 /** 086 * Sets the value of the name property. 087 * 088 * @param value 089 * allowed object is 090 * {@link String } 091 * 092 */ 093 public void setName(String value) { 094 this.name = value; 095 } 096 097}