blob: 7ffcba447e6a35f93ae0e443b018b271986366bb [file] [log] [blame]
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.karaf.cellar.dosgi;
import org.apache.karaf.cellar.core.command.Command;
import java.util.List;
/**
* Cluster remote service call event.
*/
public class RemoteServiceCall extends Command<RemoteServiceResult> {
private String endpointId;
private String method;
private String serviceClass;
private List<Object> arguments;
public RemoteServiceCall(String id) {
super(id);
}
public List<Object> getArguments() {
return arguments;
}
public void setArguments(List<Object> arguments) {
this.arguments = arguments;
}
public String getMethod() {
return method;
}
public void setMethod(String method) {
this.method = method;
}
public String getServiceClass() {
return serviceClass;
}
public void setServiceClass(String serviceClass) {
this.serviceClass = serviceClass;
}
public String getEndpointId() {
return endpointId;
}
public void setEndpointId(String endpointId) {
this.endpointId = endpointId;
}
}