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

org.yamcs.artemis.ArtemisPlugin Maven / Gradle / Ivy

There is a newer version: 4.10.9
Show newest version
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