blob: 1aadc836d519319d7a01f4c927500133846cac23 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.airavata.mft.admin.models.rpc;
import java.util.HashMap;
import java.util.Map;
public class SyncRPCRequest {
private String agentId;
private String method;
private Map<String, String> parameters;
private String returnAddress;
private String messageId;
public String getAgentId() {
return agentId;
}
public SyncRPCRequest setAgentId(String agentId) {
this.agentId = agentId;
return this;
}
public String getMethod() {
return method;
}
public SyncRPCRequest setMethod(String method) {
this.method = method;
return this;
}
public Map<String, String> getParameters() {
return parameters;
}
public SyncRPCRequest setParameters(Map<String, String> parameters) {
this.parameters = parameters;
return this;
}
public String getReturnAddress() {
return returnAddress;
}
public SyncRPCRequest setReturnAddress(String returnAddress) {
this.returnAddress = returnAddress;
return this;
}
public String getMessageId() {
return messageId;
}
public SyncRPCRequest setMessageId(String messageId) {
this.messageId = messageId;
return this;
}
public static final class SyncRPCRequestBuilder {
private String agentId;
private String method;
private Map<String, String> parameters = new HashMap<>();
private String messageId;
private SyncRPCRequestBuilder() {
}
public static SyncRPCRequestBuilder builder() {
return new SyncRPCRequestBuilder();
}
public SyncRPCRequestBuilder withAgentId(String agentId) {
this.agentId = agentId;
return this;
}
public SyncRPCRequestBuilder withMethod(String method) {
this.method = method;
return this;
}
public SyncRPCRequestBuilder withParameter(String key, String value) {
this.parameters.put(key, value);
return this;
}
public SyncRPCRequestBuilder withMessageId(String messageId) {
this.messageId = messageId;
return this;
}
public SyncRPCRequest build() {
SyncRPCRequest syncRPCRequest = new SyncRPCRequest();
syncRPCRequest.setAgentId(agentId);
syncRPCRequest.setMethod(method);
syncRPCRequest.setParameters(parameters);
syncRPCRequest.setMessageId(messageId);
return syncRPCRequest;
}
}
}