Package org.yamcs.protobuf
Interface FileTransferCapabilitiesOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
FileTransferCapabilities,FileTransferCapabilities.Builder
public interface FileTransferCapabilitiesOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleangetDownload()if true, yamcs-web shows a button for initiating a downloadbooleangetReliability()if true, yamcs-web will allow to chose reliable/non-reliable transferbooleangetRemotePath()if true, yamcs-web will show the section with the destination file/folder name (upload only)booleangetUpload()if true, yamcs-web shows a button for initiating an uploadbooleanhasDownload()if true, yamcs-web shows a button for initiating a downloadbooleanhasReliability()if true, yamcs-web will allow to chose reliable/non-reliable transferbooleanhasRemotePath()if true, yamcs-web will show the section with the destination file/folder name (upload only)booleanhasUpload()if true, yamcs-web shows a button for initiating an upload-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasUpload
boolean hasUpload()
if true, yamcs-web shows a button for initiating an upload
optional bool upload = 1;
-
getUpload
boolean getUpload()
if true, yamcs-web shows a button for initiating an upload
optional bool upload = 1;
-
hasDownload
boolean hasDownload()
if true, yamcs-web shows a button for initiating a download
optional bool download = 2;
-
getDownload
boolean getDownload()
if true, yamcs-web shows a button for initiating a download
optional bool download = 2;
-
hasReliability
boolean hasReliability()
if true, yamcs-web will allow to chose reliable/non-reliable transfer
optional bool reliability = 3;
-
getReliability
boolean getReliability()
if true, yamcs-web will allow to chose reliable/non-reliable transfer
optional bool reliability = 3;
-
hasRemotePath
boolean hasRemotePath()
if true, yamcs-web will show the section with the destination file/folder name (upload only)
optional bool remotePath = 4;
-
getRemotePath
boolean getRemotePath()
if true, yamcs-web will show the section with the destination file/folder name (upload only)
optional bool remotePath = 4;
-
-