Interface RunningServiceOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
RunningService
,RunningService.Builder
public interface RunningServiceOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getCmdline()
Service command line.com.google.protobuf.ByteString
getCmdlineBytes()
Service command line.String
getExePath()
Service binary path.com.google.protobuf.ByteString
getExePathBytes()
Service binary path.long
getPid()
Service pid.String
getServiceName()
Service name.com.google.protobuf.ByteString
getServiceNameBytes()
Service name.RunningService.StartMode
getStartMode()
Service start mode (OS-agnostic).int
getStartModeValue()
Service start mode (OS-agnostic).RunningService.State
getState()
Service state (OS-agnostic).int
getStateValue()
Service state (OS-agnostic).-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getServiceName
String getServiceName()
Service name.
string service_name = 1;
- Returns:
- The serviceName.
-
getServiceNameBytes
com.google.protobuf.ByteString getServiceNameBytes()
Service name.
string service_name = 1;
- Returns:
- The bytes for serviceName.
-
getStateValue
int getStateValue()
Service state (OS-agnostic).
.google.cloud.migrationcenter.v1.RunningService.State state = 2;
- Returns:
- The enum numeric value on the wire for state.
-
getState
RunningService.State getState()
Service state (OS-agnostic).
.google.cloud.migrationcenter.v1.RunningService.State state = 2;
- Returns:
- The state.
-
getStartModeValue
int getStartModeValue()
Service start mode (OS-agnostic).
.google.cloud.migrationcenter.v1.RunningService.StartMode start_mode = 3;
- Returns:
- The enum numeric value on the wire for startMode.
-
getStartMode
RunningService.StartMode getStartMode()
Service start mode (OS-agnostic).
.google.cloud.migrationcenter.v1.RunningService.StartMode start_mode = 3;
- Returns:
- The startMode.
-
getExePath
String getExePath()
Service binary path.
string exe_path = 4;
- Returns:
- The exePath.
-
getExePathBytes
com.google.protobuf.ByteString getExePathBytes()
Service binary path.
string exe_path = 4;
- Returns:
- The bytes for exePath.
-
getCmdline
String getCmdline()
Service command line.
string cmdline = 5;
- Returns:
- The cmdline.
-
getCmdlineBytes
com.google.protobuf.ByteString getCmdlineBytes()
Service command line.
string cmdline = 5;
- Returns:
- The bytes for cmdline.
-
getPid
long getPid()
Service pid.
int64 pid = 6;
- Returns:
- The pid.
-
-