Class OtherConnectionDetails
- java.lang.Object
-
- org.pentaho.di.connections.vfs.providers.other.OtherConnectionDetails
-
- All Implemented Interfaces:
ConnectionDetails
,VFSConnectionDetails
public class OtherConnectionDetails extends Object implements VFSConnectionDetails
Created by bmorrise on 2/3/19.
-
-
Field Summary
Fields Modifier and Type Field Description VariableSpace
space
static String
TYPE
-
Constructor Summary
Constructors Constructor Description OtherConnectionDetails()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getDescription()
String
getHost()
String
getName()
String
getPassword()
String
getPort()
String
getProtocol()
VariableSpace
getSpace()
String
getType()
String
getUsername()
void
setDescription(String description)
void
setHost(String host)
void
setName(String name)
void
setPassword(String password)
void
setPort(String port)
void
setProtocol(String protocol)
void
setSpace(VariableSpace space)
void
setUsername(String username)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.pentaho.di.connections.ConnectionDetails
closeDialog, getProperties, openDialog
-
Methods inherited from interface org.pentaho.di.connections.vfs.VFSConnectionDetails
getDomain
-
-
-
-
Field Detail
-
space
public VariableSpace space
-
TYPE
public static final String TYPE
- See Also:
- Constant Field Values
-
-
Method Detail
-
getHost
public String getHost()
-
setHost
public void setHost(String host)
-
getPort
public String getPort()
-
setPort
public void setPort(String port)
-
getUsername
public String getUsername()
-
setUsername
public void setUsername(String username)
-
getPassword
public String getPassword()
-
setPassword
public void setPassword(String password)
-
getName
public String getName()
- Specified by:
getName
in interfaceConnectionDetails
-
setName
public void setName(String name)
- Specified by:
setName
in interfaceConnectionDetails
-
getType
public String getType()
- Specified by:
getType
in interfaceConnectionDetails
-
getProtocol
public String getProtocol()
-
setProtocol
public void setProtocol(String protocol)
-
getDescription
public String getDescription()
- Specified by:
getDescription
in interfaceConnectionDetails
-
setDescription
public void setDescription(String description)
- Specified by:
setDescription
in interfaceConnectionDetails
-
getSpace
public VariableSpace getSpace()
- Specified by:
getSpace
in interfaceConnectionDetails
-
setSpace
public void setSpace(VariableSpace space)
- Specified by:
setSpace
in interfaceConnectionDetails
-
-