You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
765 B
46 lines
765 B
package de.superx.transfer; |
|
|
|
import de.memtext.baseobjects.NamedObject; |
|
|
|
public class Target extends NamedObject { |
|
private String host,userid,password,targetPath; |
|
public Target(String name) |
|
{ |
|
super(name); |
|
} |
|
|
|
public String getHost() { |
|
return host; |
|
} |
|
|
|
public String getPassword() { |
|
return password; |
|
} |
|
|
|
public String getTargetPath() { |
|
return targetPath; |
|
} |
|
|
|
public String getUserid() { |
|
return userid; |
|
} |
|
|
|
public void setHost(String string) { |
|
host = string; |
|
} |
|
|
|
public void setPassword(String string) { |
|
password = string; |
|
} |
|
|
|
public void setTargetPath(String string) { |
|
targetPath = string; |
|
} |
|
|
|
public void setUserid(String string) { |
|
userid = string; |
|
} |
|
|
|
} |
|
|
|
//Created on 17.04.2004 at 19:26:50
|