Package org.teiid.adminapi.impl
Class VDBTranslatorMetaData
- java.lang.Object
-
- org.teiid.adminapi.impl.AdminObjectImpl
-
- org.teiid.adminapi.impl.VDBTranslatorMetaData
-
- All Implemented Interfaces:
Serializable
,AdminObject
,DomainAware
,Translator
public class VDBTranslatorMetaData extends AdminObjectImpl implements Translator
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class org.teiid.adminapi.impl.AdminObjectImpl
attachments
-
Fields inherited from interface org.teiid.adminapi.AdminObject
DELIMITER, DELIMITER_CHAR, ESCAPED_DELIMITER, ESCAPED_WILDCARD, WILDCARD
-
Fields inherited from interface org.teiid.adminapi.Translator
EXECUTION_FACTORY_CLASS, TRANSLATOR_PROPERTY
-
-
Constructor Summary
Constructors Constructor Description VDBTranslatorMetaData()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getDescription()
Get the Translator descriptionClass<?>
getExecutionFactoryClass()
String
getModuleName()
String
getName()
Get the name for this AdminObject, usually the last component of the identifier.VDBTranslatorMetaData
getParent()
String
getType()
Get the Translator typevoid
setDescription(String desc)
void
setExecutionFactoryClass(Class<?> clazz)
void
setModuleName(String name)
void
setName(String name)
void
setParent(VDBTranslatorMetaData parent)
void
setType(String type)
String
toString()
-
Methods inherited from class org.teiid.adminapi.impl.AdminObjectImpl
addAttachment, addAttchment, addProperty, getAttachment, getHostName, getProperties, getPropertiesMap, getPropertyValue, getServerGroup, getServerName, removeAttachment, removeProperty, setHostName, setProperties, setServerGroup, setServerName
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.teiid.adminapi.AdminObject
getProperties, getPropertyValue
-
Methods inherited from interface org.teiid.adminapi.DomainAware
getHostName, getServerGroup, getServerName
-
-
-
-
Method Detail
-
getName
public String getName()
Description copied from interface:AdminObject
Get the name for this AdminObject, usually the last component of the identifier.- Specified by:
getName
in interfaceAdminObject
- Overrides:
getName
in classAdminObjectImpl
- Returns:
- String Name
-
setName
public void setName(String name)
- Overrides:
setName
in classAdminObjectImpl
-
getType
public String getType()
Description copied from interface:Translator
Get the Translator type- Specified by:
getType
in interfaceTranslator
- Returns:
-
setType
public void setType(String type)
-
getExecutionFactoryClass
public Class<?> getExecutionFactoryClass()
-
setExecutionFactoryClass
public void setExecutionFactoryClass(Class<?> clazz)
-
getDescription
public String getDescription()
Description copied from interface:Translator
Get the Translator description- Specified by:
getDescription
in interfaceTranslator
- Returns:
-
setDescription
public void setDescription(String desc)
-
getModuleName
public String getModuleName()
-
setModuleName
public void setModuleName(String name)
-
setParent
public void setParent(VDBTranslatorMetaData parent)
-
getParent
public VDBTranslatorMetaData getParent()
-
-