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

org.yamcs.filetransfer.FileActionIdentifier Maven / Gradle / Ivy

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

public class FileActionIdentifier {
    public final String entityName;
    public final String fileName;

    public FileActionIdentifier(String entityName, String fileName) {
        this.entityName = entityName;
        this.fileName = fileName;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy