org.rutebanken.netex.model.DataManagedObjectStructure Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of netex-java-model Show documentation
Show all versions of netex-java-model Show documentation
Generates Java model from NeTEx XSDs using JAXB.
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2017.09.21 at 10:53:23 AM CEST
//
package org.rutebanken.netex.model;
import java.time.OffsetDateTime;
import java.util.Collection;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.NormalizedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.rutebanken.netex.OmitNullsToStringStyle;
/**
* Java class for DataManagedObjectStructure complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="DataManagedObjectStructure">
* <complexContent>
* <extension base="{http://www.netex.org.uk/netex}EntityInVersionStructure">
* <sequence>
* <group ref="{http://www.netex.org.uk/netex}DataManagedObjectGroup"/>
* </sequence>
* <attribute name="responsibilitySetRef" type="{http://www.netex.org.uk/netex}ResponsibilitySetIdType" />
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DataManagedObjectStructure", propOrder = {
"keyList",
"extensions",
"brandingRef",
"alternativeTexts"
})
@XmlSeeAlso({
Version_VersionStructure.class,
ValueSet_VersionStructure.class,
ResponsibilitySet_VersionStructure.class,
ResponsibilityRole_VersionStructure.class,
Timeband_VersionedChildStructure.class,
ServiceCalendar_VersionStructure.class,
OperatingDay_VersionStructure.class,
OperatingPeriod_VersionStructure.class,
LineShapeStructure.class,
EquipmentPositionStructure.class,
Notice_VersionStructure.class,
DeliveryVariant_VersionStructure.class,
SchematicMap_VersionStructure.class,
SecurityList_VersionStructure.class,
Projection_VersionStructure.class,
VehicleRequirement_VersionStructure.class,
Vehicle_VersionStructure.class,
VehicleModel_VersionStructure.class,
VehicleEquipmentProfile_VersionStructure.class,
VehicleType_VersionStructure.class,
TrainElement_VersionStructure.class,
TrainComponent_VersionStructure.class,
OperationalContext_VersionStructure.class,
OrganisationPart_VersionStructure.class,
DestinationDisplay_VersionStructure.class,
DestinationDisplayVariant_VersionStructure.class,
AllowedLineDirection_VersionStructure.class,
RouteInstruction_VersionStructure.class,
Line_VersionStructure.class,
LineNetwork_VersionStructure.class,
Level_VersionStructure.class,
Link_VersionStructure.class,
Transfer_VersionStructure.class,
Point_VersionStructure.class,
LogicalDisplay_VersionStructure.class,
VehicleStoppingPosition_VersionStructure.class,
TimeDemandType_VersionStructure.class,
JourneyMeeting_VersionStructure.class,
DefaultInterchange_VersionStructure.class,
Interchange_VersionStructure.class,
JourneyPart_VersionStructure.class,
CoupledJourney_VersionStructure.class,
JourneyPartCouple_VersionStructure.class,
TrainNumber_VersionStructure.class,
FlexibleServiceProperties_VersionStructure.class,
LinkSequence_VersionStructure.class,
TimeDemandProfile_VersionStructure.class,
Duty_VersionStructure.class,
AccountableElementStructure.class,
DriverTrip_VersionStructure.class,
DriverTripTime_VersionStructure.class,
Block_VersionStructure.class,
CompoundBlockStructure.class,
BlockPart_VersionStructure.class,
VehicleService_VersionStructure.class,
VehicleServicePart_VersionStructure.class,
CourseOfJourneys_VersionStructure.class,
ReliefOpportunity_VersionStructure.class,
PricingParameterSet_VersionedStructure.class,
Rounding_VersionedStructure.class,
DayType_VersionStructure.class,
MonthValidityOffset_VersionedStructure.class,
PricingRule_VersionedStructure.class,
PricingService_VersionedStructure.class,
Tariff_VersionStructure.class,
TravelDocument_VersionStructure.class,
ParkingTariff_VersionStructure.class,
Customer_VersionStructure.class,
PassengerContract_VersionStructure.class,
CustomerAccount_VersionStructure.class,
Organisation_VersionStructure.class,
TypeOfValue_VersionStructure.class,
LogEntry_VersionStructure.class,
PriceableObject_VersionStructure.class,
Assignment_VersionStructure_.class,
VersionFrame_VersionStructure.class,
DataManagedObject_ViewStructure.class,
GroupOfEntities_VersionStructure.class,
Equipment_VersionStructure.class,
PassengerCapacityStructure.class,
FacilitySet_VersionStructure.class,
ValidityCondition_VersionStructure.class
})
public abstract class DataManagedObjectStructure
extends EntityInVersionStructure
{
protected KeyListStructure keyList;
@XmlElement(name = "Extensions")
protected ExtensionsStructure extensions;
@XmlElement(name = "BrandingRef")
protected BrandingRefStructure brandingRef;
protected AlternativeTexts_RelStructure alternativeTexts;
@XmlAttribute(name = "responsibilitySetRef")
@XmlJavaTypeAdapter(NormalizedStringAdapter.class)
protected String responsibilitySetRef;
/**
* Gets the value of the keyList property.
*
* @return
* possible object is
* {@link KeyListStructure }
*
*/
public KeyListStructure getKeyList() {
return keyList;
}
/**
* Sets the value of the keyList property.
*
* @param value
* allowed object is
* {@link KeyListStructure }
*
*/
public void setKeyList(KeyListStructure value) {
this.keyList = value;
}
/**
* Gets the value of the extensions property.
*
* @return
* possible object is
* {@link ExtensionsStructure }
*
*/
public ExtensionsStructure getExtensions() {
return extensions;
}
/**
* Sets the value of the extensions property.
*
* @param value
* allowed object is
* {@link ExtensionsStructure }
*
*/
public void setExtensions(ExtensionsStructure value) {
this.extensions = value;
}
/**
* Gets the value of the brandingRef property.
*
* @return
* possible object is
* {@link BrandingRefStructure }
*
*/
public BrandingRefStructure getBrandingRef() {
return brandingRef;
}
/**
* Sets the value of the brandingRef property.
*
* @param value
* allowed object is
* {@link BrandingRefStructure }
*
*/
public void setBrandingRef(BrandingRefStructure value) {
this.brandingRef = value;
}
/**
* Gets the value of the alternativeTexts property.
*
* @return
* possible object is
* {@link AlternativeTexts_RelStructure }
*
*/
public AlternativeTexts_RelStructure getAlternativeTexts() {
return alternativeTexts;
}
/**
* Sets the value of the alternativeTexts property.
*
* @param value
* allowed object is
* {@link AlternativeTexts_RelStructure }
*
*/
public void setAlternativeTexts(AlternativeTexts_RelStructure value) {
this.alternativeTexts = value;
}
/**
* Gets the value of the responsibilitySetRef property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getResponsibilitySetRef() {
return responsibilitySetRef;
}
/**
* Sets the value of the responsibilitySetRef property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setResponsibilitySetRef(String value) {
this.responsibilitySetRef = value;
}
public DataManagedObjectStructure withKeyList(KeyListStructure value) {
setKeyList(value);
return this;
}
public DataManagedObjectStructure withExtensions(ExtensionsStructure value) {
setExtensions(value);
return this;
}
public DataManagedObjectStructure withBrandingRef(BrandingRefStructure value) {
setBrandingRef(value);
return this;
}
public DataManagedObjectStructure withAlternativeTexts(AlternativeTexts_RelStructure value) {
setAlternativeTexts(value);
return this;
}
public DataManagedObjectStructure withResponsibilitySetRef(String value) {
setResponsibilitySetRef(value);
return this;
}
@Override
public DataManagedObjectStructure withValidityConditions(ValidityConditions_RelStructure value) {
setValidityConditions(value);
return this;
}
@Override
public DataManagedObjectStructure withValidBetween(ValidBetween... values) {
if (values!= null) {
for (ValidBetween value: values) {
getValidBetween().add(value);
}
}
return this;
}
@Override
public DataManagedObjectStructure withValidBetween(Collection values) {
if (values!= null) {
getValidBetween().addAll(values);
}
return this;
}
@Override
public DataManagedObjectStructure withDataSourceRef(String value) {
setDataSourceRef(value);
return this;
}
@Override
public DataManagedObjectStructure withCreated(OffsetDateTime value) {
setCreated(value);
return this;
}
@Override
public DataManagedObjectStructure withChanged(OffsetDateTime value) {
setChanged(value);
return this;
}
@Override
public DataManagedObjectStructure withModification(ModificationEnumeration value) {
setModification(value);
return this;
}
@Override
public DataManagedObjectStructure withVersion(String value) {
setVersion(value);
return this;
}
@Override
public DataManagedObjectStructure withStatus_BasicModificationDetailsGroup(StatusEnumeration value) {
setStatus_BasicModificationDetailsGroup(value);
return this;
}
@Override
public DataManagedObjectStructure withDerivedFromVersionRef_BasicModificationDetailsGroup(String value) {
setDerivedFromVersionRef_BasicModificationDetailsGroup(value);
return this;
}
@Override
public DataManagedObjectStructure withCompatibleWithVersionFrameVersionRef(String value) {
setCompatibleWithVersionFrameVersionRef(value);
return this;
}
@Override
public DataManagedObjectStructure withDerivedFromObjectRef(String value) {
setDerivedFromObjectRef(value);
return this;
}
@Override
public DataManagedObjectStructure withNameOfClass(String value) {
setNameOfClass(value);
return this;
}
@Override
public DataManagedObjectStructure withId(String value) {
setId(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 - 2024 Weber Informatics LLC | Privacy Policy