Class EmbeddedConnectionRequestBody
- java.lang.Object
-
- org.odpi.openmetadata.accessservices.datamanager.rest.EmbeddedConnectionRequestBody
-
- All Implemented Interfaces:
Serializable
public class EmbeddedConnectionRequestBody extends Object implements Serializable
The EmbeddedConnectionRequestBody is used within a VirtualConnection to link to the embedded connections.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description EmbeddedConnectionRequestBody()Default constructorEmbeddedConnectionRequestBody(EmbeddedConnectionRequestBody template)Copy/clone constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object objectToCompare)Compare the values of the supplied object with those stored in the current object.Map<String,Object>getArguments()Return the arguments for the embedded connection.StringgetDisplayName()Return the printable name of the embedded connection.StringgetExternalSourceGUID()Return the unique identifier of the software server capability entity that represented the external source - null for local.StringgetExternalSourceName()Return the unique name of the software server capability entity that represented the external source.intgetPosition()Return the position that this connector is in the list of embedded connectors.inthashCode()Create a hash code for this element type.voidsetArguments(Map<String,Object> arguments)Set up the arguments for the embedded connection.voidsetDisplayName(String displayName)Set up the printable name of the embedded connection.voidsetExternalSourceGUID(String externalSourceGUID)Set up the unique identifier of the software server capability entity that represented the external source - null for local.voidsetExternalSourceName(String externalSourceName)Set up the unique name of the software server capability entity that represented the external source.voidsetPosition(int position)Set up the position that this connector is in the list of embedded connectors.StringtoString()Standard toString method.
-
-
-
Constructor Detail
-
EmbeddedConnectionRequestBody
public EmbeddedConnectionRequestBody()
Default constructor
-
EmbeddedConnectionRequestBody
public EmbeddedConnectionRequestBody(EmbeddedConnectionRequestBody template)
Copy/clone constructor.- Parameters:
template- element to copy
-
-
Method Detail
-
getPosition
public int getPosition()
Return the position that this connector is in the list of embedded connectors.- Returns:
- int
-
setPosition
public void setPosition(int position)
Set up the position that this connector is in the list of embedded connectors.- Parameters:
position- int
-
getDisplayName
public String getDisplayName()
Return the printable name of the embedded connection.- Returns:
- String name
-
setDisplayName
public void setDisplayName(String displayName)
Set up the printable name of the embedded connection.- Parameters:
displayName- String name
-
getArguments
public Map<String,Object> getArguments()
Return the arguments for the embedded connection.- Returns:
- property map
-
setArguments
public void setArguments(Map<String,Object> arguments)
Set up the arguments for the embedded connection.- Parameters:
arguments- property map
-
getExternalSourceGUID
public String getExternalSourceGUID()
Return the unique identifier of the software server capability entity that represented the external source - null for local.- Returns:
- string guid
-
setExternalSourceGUID
public void setExternalSourceGUID(String externalSourceGUID)
Set up the unique identifier of the software server capability entity that represented the external source - null for local.- Parameters:
externalSourceGUID- string guid
-
getExternalSourceName
public String getExternalSourceName()
Return the unique name of the software server capability entity that represented the external source.- Returns:
- string name
-
setExternalSourceName
public void setExternalSourceName(String externalSourceName)
Set up the unique name of the software server capability entity that represented the external source.- Parameters:
externalSourceName- string name
-
toString
public String toString()
Standard toString method.
-
equals
public boolean equals(Object objectToCompare)
Compare the values of the supplied object with those stored in the current object.
-
-