
org.yamcs.sle.user.SleAttributes Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsle Show documentation
Show all versions of jsle Show documentation
Java implementation for the SLE (Space Link Extension) protocol.
package org.yamcs.sle.user;
/**
* Common attributes required for specifying the SLE services and doing a connection
*
* @author nm
*
*/
public class SleAttributes {
public final String responderPortId;
public final String initiatorId;
public final String serviceInstance;
public SleAttributes(String responderPortId, String initiatorId, String serviceInstance) {
this.responderPortId = responderPortId;
this.initiatorId = initiatorId;
this.serviceInstance = serviceInstance;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy