Interface PollAirflowCommandResponse.ExitInfoOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
PollAirflowCommandResponse.ExitInfo
,PollAirflowCommandResponse.ExitInfo.Builder
- Enclosing class:
- PollAirflowCommandResponse
public static interface PollAirflowCommandResponse.ExitInfoOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getError()
Error message.com.google.protobuf.ByteString
getErrorBytes()
Error message.int
getExitCode()
The exit code from the command execution.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getExitCode
int getExitCode()
The exit code from the command execution.
int32 exit_code = 1;
- Returns:
- The exitCode.
-
getError
String getError()
Error message. Empty if there was no error.
string error = 2;
- Returns:
- The error.
-
getErrorBytes
com.google.protobuf.ByteString getErrorBytes()
Error message. Empty if there was no error.
string error = 2;
- Returns:
- The bytes for error.
-
-