
de.vdv.ojp20.siri.DataNameSpacesStructure Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ojp-java-model Show documentation
Show all versions of ojp-java-model Show documentation
Generates Java model from OJP xsds using jaxb.
The newest version!
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.5
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package de.vdv.ojp20.siri;
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;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.opentripplanner.ojp.netex.OmitNullsToStringStyle;
/**
* Java class for DataNameSpacesStructure complex type
.
*
* The following schema fragment specifies the expected content contained within this class.
*
* {@code
*
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DataNameSpacesStructure", propOrder = {
"stopPointNameSpace",
"lineNameSpace",
"productCategoryNameSpace",
"serviceFeatureNameSpace",
"vehicleFeatureNameSpace"
})
public class DataNameSpacesStructure {
@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;
}
public DataNameSpacesStructure withStopPointNameSpace(String value) {
setStopPointNameSpace(value);
return this;
}
public DataNameSpacesStructure withLineNameSpace(String value) {
setLineNameSpace(value);
return this;
}
public DataNameSpacesStructure withProductCategoryNameSpace(String value) {
setProductCategoryNameSpace(value);
return this;
}
public DataNameSpacesStructure withServiceFeatureNameSpace(String value) {
setServiceFeatureNameSpace(value);
return this;
}
public DataNameSpacesStructure withVehicleFeatureNameSpace(String value) {
setVehicleFeatureNameSpace(value);
return this;
}
/**
* Generates a String representation of the contents of this type.
* This is an extension method, produced by the 'ts' xjc plugin
*
*/
@Override
public String toString() {
return ToStringBuilder.reflectionToString(this, OmitNullsToStringStyle.INSTANCE);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy