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

org.yamcs.cfdp.CfdpRequest Maven / Gradle / Ivy

There is a newer version: 5.10.7
Show newest version
package org.yamcs.cfdp;

public abstract class CfdpRequest {

    private CfdpRequestType type;

    enum CfdpRequestType {
        PUT,
        PAUSE,
        RESUME,
        CANCEL
    }

    protected CfdpRequest(CfdpRequestType type) {
        this.type = type;
    }

    public CfdpRequestType getType() {
        return this.type;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy