Class ConnectionDefinition
- java.lang.Object
-
- com.aquima.interactions.project.impl.ConnectionDefinition
-
- All Implemented Interfaces:
IConnectionDefinition
,Serializable
public class ConnectionDefinition extends Object implements IConnectionDefinition
This class contains the definition of a single resource connection.- Since:
- 8.3
- Author:
- Jon van Leuven
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
ConnectionDefinition(IResourceConnectionDS datasource)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getName()
This method returns the name of the connection.IParameters
getParameters()
This method returns metainformation about this connections.ConnectionType
getType()
This method returns the type of conntection.protected void
setParameter(String name, String strValue)
-
-
-
Constructor Detail
-
ConnectionDefinition
protected ConnectionDefinition(IResourceConnectionDS datasource)
-
-
Method Detail
-
getName
public String getName()
Description copied from interface:IConnectionDefinition
This method returns the name of the connection.- Specified by:
getName
in interfaceIConnectionDefinition
- Returns:
- The name of the connection, never null.
-
getType
public ConnectionType getType()
Description copied from interface:IConnectionDefinition
This method returns the type of conntection.- Specified by:
getType
in interfaceIConnectionDefinition
- Returns:
- The connection type, never null.
-
getParameters
public IParameters getParameters()
Description copied from interface:IConnectionDefinition
This method returns metainformation about this connections.- Specified by:
getParameters
in interfaceIConnectionDefinition
- Returns:
- The metainformation of this connection, never null.
-
-