All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.yamcs.container.ContainerWithId Maven / Gradle / Ivy

There is a newer version: 5.10.9
Show newest version
package org.yamcs.container;

import org.yamcs.protobuf.Yamcs.NamedObjectId;
import org.yamcs.xtce.SequenceContainer;

public class ContainerWithId {
    SequenceContainer def; // The definition of the container
    NamedObjectId id; // The id used by the subscriber for referring to this container
    public ContainerWithId(SequenceContainer def, NamedObjectId id) {
        this.def = def;
        this.id = id;
    }
    public Object getContainer() {      
        return def;
    }
    public NamedObjectId getId() {
        return id;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy