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

org.yamcs.sle.user.SleAttributes Maven / Gradle / Ivy

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