Package org.kie.server.api.commands
Class DescriptorCommand
- java.lang.Object
-
- org.kie.server.api.commands.DescriptorCommand
-
- All Implemented Interfaces:
Serializable,org.kie.api.command.Command<ServiceResponse>,KieServerCommand
public class DescriptorCommand extends Object implements KieServerCommand
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DescriptorCommand()DescriptorCommand(String service, String method, Object... arguments)DescriptorCommand(String service, String method, String marshallerFormat, Object... arguments)DescriptorCommand(String service, String method, String payload, String marshallerFormat, Object... arguments)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<Object>getArguments()StringgetMarshallerFormat()StringgetMethod()StringgetPayload()StringgetService()voidsetArguments(List<Object> arguments)voidsetMarshallerFormat(String marshallerFormat)voidsetMethod(String method)voidsetPayload(String payload)voidsetService(String service)StringtoString()
-
-
-
Method Detail
-
getService
public String getService()
-
setService
public void setService(String service)
-
getMethod
public String getMethod()
-
setMethod
public void setMethod(String method)
-
getPayload
public String getPayload()
-
setPayload
public void setPayload(String payload)
-
getMarshallerFormat
public String getMarshallerFormat()
-
setMarshallerFormat
public void setMarshallerFormat(String marshallerFormat)
-
-