Class SystemUpdateRequest
- 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.SystemUpdateRequest
-
public class SystemUpdateRequest extends JsonrpcRequest
Represents a JSON-RPC Request to execute a system update.{ "jsonrpc": "2.0", "id": "UUID", "method": "systemUpdate", "params": {} }
-
-
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
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SystemUpdateRequest
from(JsonrpcRequest r)
Parses a genericJsonrpcRequest
to aSystemUpdateRequest
.com.google.gson.JsonObject
getParams()
Gets the paramsJsonObject
of theJsonrpcRequest
.-
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 SystemUpdateRequest from(JsonrpcRequest r) throws OpenemsException
Parses a genericJsonrpcRequest
to aSystemUpdateRequest
.- Parameters:
r
- theJsonrpcRequest
- Returns:
- the
SystemUpdateRequest
- Throws:
OpenemsError.OpenemsNamedException
- on errorOpenemsException
-
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
-
-