Interface FTPTransport
-
- All Superinterfaces:
BaseAsset
,NamedAsset
,PermissionsCapableAsset
,SiteManagementAreaAsset
,Transport
public interface FTPTransport extends Transport
Represents FTPTransport asset- Since:
- 5.5.2
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.hannonhill.cascade.model.dom.FTPProtocolType
getFtpProtocolType()
Gets the ftp protocol typejava.lang.String
getInitialDirectory()
Get the Server Directoryjava.lang.String
getPassword()
Get the password.int
getPort()
Get the port number.java.lang.String
getServerName()
Get the server name.java.lang.String
getUserName()
Get the user name.-
Methods inherited from interface com.hannonhill.cascade.api.asset.common.BaseAsset
getAssetId, getAssetType, getIdentifer
-
Methods inherited from interface com.hannonhill.cascade.api.asset.common.NamedAsset
getLabel, getName, setName
-
Methods inherited from interface com.hannonhill.cascade.api.asset.common.PermissionsCapableAsset
isCurrentUserCanRead, isCurrentUserCanWrite, isUserCanRead, isUserCanWrite
-
Methods inherited from interface com.hannonhill.cascade.api.asset.admin.SiteManagementAreaAsset
getIdentifier, getPath, getSite
-
-
-
-
Method Detail
-
getServerName
java.lang.String getServerName()
Get the server name.- Returns:
- The server name or null
-
getPort
int getPort()
Get the port number.- Returns:
- The port number or -1
-
getUserName
java.lang.String getUserName()
Get the user name.- Returns:
- The user name or null
-
getPassword
java.lang.String getPassword()
Get the password.- Returns:
- The password or null
-
getInitialDirectory
java.lang.String getInitialDirectory()
Get the Server Directory- Returns:
- The Server Directory or null
-
getFtpProtocolType
com.hannonhill.cascade.model.dom.FTPProtocolType getFtpProtocolType()
Gets the ftp protocol type- Returns:
- Returns the ftp protocol type
-
-