![JAR search and dependency download from the Maven repository](/logo.png)
energyml.prodml2_0.WellKnownNameStruct Maven / Gradle / Ivy
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.0
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2022.10.13 at 08:02:05 PM UTC
//
package energyml.prodml2_0;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;
/**
* The name of something within a mandatory naming system with an optional code.
*
* Java class for WellKnownNameStruct complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="WellKnownNameStruct">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="authority" use="required" type="energyml.common2_1.String64" />
* <attribute name="code" type="energyml.common2_1.String64" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "WellKnownNameStruct")
public class WellKnownNameStruct {
@XmlAttribute(name = "authority", required = true)
protected String authority;
@XmlAttribute(name = "code")
protected String code;
/**
* Gets the value of the authority property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAuthority() {
return authority;
}
/**
* Sets the value of the authority property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAuthority(String value) {
this.authority = value;
}
/**
* Gets the value of the code property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCode() {
return code;
}
/**
* Sets the value of the code property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCode(String value) {
this.code = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy