![JAR search and dependency download from the Maven repository](/logo.png)
uk.org.siri.siri20.DataNameSpacesStructure Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of siri-java-model Show documentation
Show all versions of siri-java-model Show documentation
Java objects based on the public SIRI XSDs
The newest version!
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2025.01.07 at 02:19:39 PM UTC
//
package uk.org.siri.siri20;
import java.io.Serializable;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
/**
* Name spaces.
*
* Java class for DataNameSpacesStructure complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="DataNameSpacesStructure">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="StopPointNameSpace" type="{http://www.w3.org/2001/XMLSchema}anyURI" minOccurs="0"/>
* <element name="LineNameSpace" type="{http://www.w3.org/2001/XMLSchema}anyURI" minOccurs="0"/>
* <element name="ProductCategoryNameSpace" type="{http://www.w3.org/2001/XMLSchema}anyURI" minOccurs="0"/>
* <element name="ServiceFeatureNameSpace" type="{http://www.w3.org/2001/XMLSchema}anyURI" minOccurs="0"/>
* <element name="VehicleFeatureNameSpace" type="{http://www.w3.org/2001/XMLSchema}anyURI" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DataNameSpacesStructure", propOrder = {
"stopPointNameSpace",
"lineNameSpace",
"productCategoryNameSpace",
"serviceFeatureNameSpace",
"vehicleFeatureNameSpace"
})
public class DataNameSpacesStructure
implements Serializable
{
@XmlElement(name = "StopPointNameSpace")
@XmlSchemaType(name = "anyURI")
protected String stopPointNameSpace;
@XmlElement(name = "LineNameSpace")
@XmlSchemaType(name = "anyURI")
protected String lineNameSpace;
@XmlElement(name = "ProductCategoryNameSpace")
@XmlSchemaType(name = "anyURI")
protected String productCategoryNameSpace;
@XmlElement(name = "ServiceFeatureNameSpace")
@XmlSchemaType(name = "anyURI")
protected String serviceFeatureNameSpace;
@XmlElement(name = "VehicleFeatureNameSpace")
@XmlSchemaType(name = "anyURI")
protected String vehicleFeatureNameSpace;
/**
* Gets the value of the stopPointNameSpace property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getStopPointNameSpace() {
return stopPointNameSpace;
}
/**
* Sets the value of the stopPointNameSpace property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setStopPointNameSpace(String value) {
this.stopPointNameSpace = value;
}
/**
* Gets the value of the lineNameSpace property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLineNameSpace() {
return lineNameSpace;
}
/**
* Sets the value of the lineNameSpace property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLineNameSpace(String value) {
this.lineNameSpace = value;
}
/**
* Gets the value of the productCategoryNameSpace property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getProductCategoryNameSpace() {
return productCategoryNameSpace;
}
/**
* Sets the value of the productCategoryNameSpace property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setProductCategoryNameSpace(String value) {
this.productCategoryNameSpace = value;
}
/**
* Gets the value of the serviceFeatureNameSpace property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getServiceFeatureNameSpace() {
return serviceFeatureNameSpace;
}
/**
* Sets the value of the serviceFeatureNameSpace property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setServiceFeatureNameSpace(String value) {
this.serviceFeatureNameSpace = value;
}
/**
* Gets the value of the vehicleFeatureNameSpace property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVehicleFeatureNameSpace() {
return vehicleFeatureNameSpace;
}
/**
* Sets the value of the vehicleFeatureNameSpace property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVehicleFeatureNameSpace(String value) {
this.vehicleFeatureNameSpace = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy