org.opentcs.util.persistence.v002.BlockTO Maven / Gradle / Ivy
/**
* Copyright (c) The openTCS Authors.
*
* This program is free software and subject to the MIT license. (For details,
* see the licensing information (LICENSE.txt) you should have received with
* this copy of the software.)
*/
package org.opentcs.util.persistence.v002;
import java.util.ArrayList;
import java.util.List;
import static java.util.Objects.requireNonNull;
import javax.annotation.Nonnull;
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.XmlType;
import org.opentcs.data.model.Block;
/**
*
* @author Martin Grzenia (Fraunhofer IML)
*/
@XmlAccessorType(XmlAccessType.PROPERTY)
@XmlType(propOrder = {"name", "id", "type", "members", "properties"})
public class BlockTO
extends PlantModelElementTO {
private String type = Block.Type.SINGLE_VEHICLE_ONLY.name();
private List members = new ArrayList<>();
@XmlAttribute(required = true)
public String getType() {
return type;
}
public BlockTO setType(@Nonnull String type) {
requireNonNull(type, "type");
this.type = type;
return this;
}
@XmlElement(name = "member")
public List getMembers() {
return members;
}
public BlockTO setMembers(@Nonnull List members) {
requireNonNull(members, "members");
this.members = members;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy