Class ExecuteSystemUpdateRequest
- java.lang.Object
-
- io.openems.common.jsonrpc.base.JsonrpcMessage
-
- io.openems.common.jsonrpc.base.AbstractJsonrpcRequest
-
- io.openems.common.jsonrpc.base.JsonrpcRequest
-
- io.openems.edge.core.host.jsonrpc.ExecuteSystemUpdateRequest
-
public class ExecuteSystemUpdateRequest extends JsonrpcRequest
Executes a System Update.{ "jsonrpc": "2.0", "id": "UUID", "method": "executeSystemUpdate", "params": { "isDebug": boolean } }
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
METHOD
-
Fields inherited from class io.openems.common.jsonrpc.base.JsonrpcRequest
DEFAULT_TIMEOUT_SECONDS, id, NO_TIMEOUT, timeoutOpt
-
Fields inherited from class io.openems.common.jsonrpc.base.JsonrpcMessage
JSONRPC_VERSION
-
-
Constructor Summary
Constructors Constructor Description ExecuteSystemUpdateRequest(boolean isDebug)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ExecuteSystemUpdateRequest
from(JsonrpcRequest r)
Parses a genericJsonrpcRequest
to aExecuteSystemUpdateRequest
.com.google.gson.JsonObject
getParams()
Gets the paramsJsonObject
of theJsonrpcRequest
.boolean
isDebug()
-
Methods inherited from class io.openems.common.jsonrpc.base.JsonrpcRequest
getId, getTimeout, toJsonObject
-
Methods inherited from class io.openems.common.jsonrpc.base.AbstractJsonrpcRequest
getFullyQualifiedMethod, getMethod
-
Methods inherited from class io.openems.common.jsonrpc.base.JsonrpcMessage
from, from, toString
-
-
-
-
Field Detail
-
METHOD
public static final java.lang.String METHOD
- See Also:
- Constant Field Values
-
-
Method Detail
-
from
public static ExecuteSystemUpdateRequest from(JsonrpcRequest r) throws OpenemsError.OpenemsNamedException
Parses a genericJsonrpcRequest
to aExecuteSystemUpdateRequest
.- Parameters:
r
- theJsonrpcRequest
- Returns:
- the
ExecuteSystemUpdateRequest
- Throws:
OpenemsError.OpenemsNamedException
- on error
-
getParams
public com.google.gson.JsonObject getParams()
Description copied from class:AbstractJsonrpcRequest
Gets the paramsJsonObject
of theJsonrpcRequest
.- Specified by:
getParams
in classAbstractJsonrpcRequest
- Returns:
- the params as
JsonObject
-
isDebug
public boolean isDebug()
-
-