org.oasisopen.odata.csdl.v4.TIncludeAnnotations 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: 2023.05.30 at 11:47:00 AM UTC
//
package org.oasisopen.odata.csdl.v4;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.adapters.CollapsedStringAdapter;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* Java class for TIncludeAnnotations complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="TIncludeAnnotations">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="TermNamespace" use="required" type="{http://docs.oasis-open.org/odata/ns/edm}TNamespaceName" />
* <attribute name="Qualifier" type="{http://docs.oasis-open.org/odata/ns/edm}TSimpleIdentifier" />
* <attribute name="TargetNamespace" type="{http://docs.oasis-open.org/odata/ns/edm}TNamespaceName" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TIncludeAnnotations", namespace = "http://docs.oasis-open.org/odata/ns/edmx")
public class TIncludeAnnotations {
@XmlAttribute(name = "TermNamespace", required = true)
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String termNamespace;
@XmlAttribute(name = "Qualifier")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String qualifier;
@XmlAttribute(name = "TargetNamespace")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String targetNamespace;
/**
* Gets the value of the termNamespace property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTermNamespace() {
return termNamespace;
}
/**
* Sets the value of the termNamespace property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTermNamespace(String value) {
this.termNamespace = value;
}
/**
* Gets the value of the qualifier property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getQualifier() {
return qualifier;
}
/**
* Sets the value of the qualifier property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setQualifier(String value) {
this.qualifier = value;
}
/**
* Gets the value of the targetNamespace property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTargetNamespace() {
return targetNamespace;
}
/**
* Sets the value of the targetNamespace property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTargetNamespace(String value) {
this.targetNamespace = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy