org.yamcs.artemis.ArtemisPlugin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yamcs-artemis Show documentation
Show all versions of yamcs-artemis Show documentation
Yamcs Artemis senders/receivers
package org.yamcs.artemis;
import org.yamcs.Plugin;
public class ArtemisPlugin implements Plugin {
private String version;
public ArtemisPlugin() {
Package pkg = getClass().getPackage();
version = (pkg != null) ? pkg.getImplementationVersion() : null;
}
@Override
public String getName() {
return "yamcs-artemis";
}
@Override
public String getDescription() {
return "Send or receive Yamcs stream tuples over Artemis";
}
@Override
public String getVersion() {
return version;
}
@Override
public String getVendor() {
return "Space Applications Services";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy