blob: 5183a1cf32533fed7e83eec07c74c7f6a1f44ae8 [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;
import java.util.List;
public class TransferRequest {
private String transferId;
private String sourceId;
private String sourceType;
private String sourceToken;
private String destinationId;
private String destinationType;
private String destinationToken;
private List<String> agentList;
public String getSourceId() {
return sourceId;
}
public void setSourceId(String sourceId) {
this.sourceId = sourceId;
}
public String getDestinationId() {
return destinationId;
}
public void setDestinationId(String destinationId) {
this.destinationId = destinationId;
}
public String getSourceType() {
return sourceType;
}
public void setSourceType(String sourceType) {
this.sourceType = sourceType;
}
public String getDestinationType() {
return destinationType;
}
public void setDestinationType(String destinationType) {
this.destinationType = destinationType;
}
public String getSourceToken() {
return sourceToken;
}
public void setSourceToken(String sourceToken) {
this.sourceToken = sourceToken;
}
public String getDestinationToken() {
return destinationToken;
}
public void setDestinationToken(String destinationToken) {
this.destinationToken = destinationToken;
}
public List<String> getAgentList() {
return agentList;
}
public void setAgentList(List<String> agentList) {
this.agentList = agentList;
}
public String getTransferId() {
return transferId;
}
public void setTransferId(String transferId) {
this.transferId = transferId;
}
}