Keyname.java
753 Bytes
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.appmon.xml;
import java.io.Serializable;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
@XmlAccessorType(value=XmlAccessType.FIELD)
@XmlType(name="")
@XmlRootElement(name="keyname")
public class Keyname
implements Serializable {
@XmlAttribute(required=1)
protected String value;
public String getValue() {
return this.value;
}
public void setValue(String value) {
this.value = value;
}
public boolean isSetValue() {
return this.value != null;
}
}