org.opentcs.util.persistence.v002.GroupTO 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.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
*
* @author Martin Grzenia (Fraunhofer IML)
*/
@XmlAccessorType(XmlAccessType.PROPERTY)
@XmlType(propOrder = {"name", "id", "members", "properties"})
public class GroupTO
extends PlantModelElementTO {
private List members = new ArrayList<>();
@XmlElement(name = "member")
public List getMembers() {
return members;
}
public GroupTO setMembers(@Nonnull List members) {
requireNonNull(members, "members");
this.members = members;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy