blob: 571b0ab2a284d2544cb1a70b638a6ba871912516 [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.transport.scp;
public class SSHResourceIdentifier {
private String id;
private String remotePath;
private String host;
private String user;
private int port;
private String keyFile;
private String keyPassphrase;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getRemotePath() {
return remotePath;
}
public void setRemotePath(String remotePath) {
this.remotePath = remotePath;
}
public String getHost() {
return host;
}
public void setHost(String host) {
this.host = host;
}
public String getUser() {
return user;
}
public void setUser(String user) {
this.user = user;
}
public int getPort() {
return port;
}
public void setPort(int port) {
this.port = port;
}
public String getKeyFile() {
return keyFile;
}
public void setKeyFile(String keyFile) {
this.keyFile = keyFile;
}
public String getKeyPassphrase() {
return keyPassphrase;
}
public void setKeyPassphrase(String keyPassphrase) {
this.keyPassphrase = keyPassphrase;
}
}