Uses of Class
org.teiid.adminapi.AdminException
-
Packages that use AdminException Package Description org.teiid.adminapi org.teiid.adminapi.jboss org.teiid.dqp.internal.process org.teiid.dqp.service org.teiid.runtime org.teiid.runtime.jmx org.teiid.runtime.util -
-
Uses of AdminException in org.teiid.adminapi
Subclasses of AdminException in org.teiid.adminapi Modifier and Type Class Description class
AdminComponentException
AnAdminComponentException
is thrown when an error occurs as a result of an internal component error.class
AdminProcessingException
AnAdminProcessingException
indicates that an error occured during processing as a result of user input.Methods in org.teiid.adminapi that return types with arguments of type AdminException Modifier and Type Method Description List<AdminException>
AdminException. getChildren()
Returns a non-null list of failures (AdminException
s), one for each component that failed.Methods in org.teiid.adminapi with parameters of type AdminException Modifier and Type Method Description void
AdminException. addChild(AdminException child)
Add a childAdminException
for a particular failure if and action resulted in multiple failures.Methods in org.teiid.adminapi that throw AdminException Modifier and Type Method Description void
Admin. addDataRoleMapping(String vdbName, int vdbVersion, String dataRole, String mappedRoleName)
Deprecated.void
Admin. addDataRoleMapping(String vdbName, String vdbVersion, String dataRole, String mappedRoleName)
Assign a Role name to the Data Role in a given VDBvoid
Admin. addSource(String vdbName, int vdbVersion, String modelName, String sourceName, String translatorName, String dsName)
Deprecated.void
Admin. addSource(String vdbName, String vdbVersion, String modelName, String sourceName, String translatorName, String dsName)
Adds aTranslator
and Data source to aVDB
's Modelvoid
Admin. cancelRequest(String sessionId, long executionId)
Cancel Requestvoid
Admin. changeVDBConnectionType(String vdbName, int vdbVersion, VDB.ConnectionType type)
Deprecated.void
Admin. changeVDBConnectionType(String vdbName, String vdbVersion, VDB.ConnectionType type)
Change theVDB.ConnectionType
of theVDB
.void
Admin. clearCache(String cacheType)
Clear the cache or caches specified by the cacheIdentifier.void
Admin. clearCache(String cacheType, String vdbName, int vdbVersion)
Deprecated.void
Admin. clearCache(String cacheType, String vdbName, String vdbVersion)
Clear the cache of the given VDB for provided cache typevoid
Admin. createDataSource(String deploymentName, String templateName, Properties properties)
Creates a JCA data source
Use this method to create JDBC driver based connection, XA-datasource or Resource Adapter.void
Admin. deleteDataSource(String deployedName)
Delete data source.void
Admin. deploy(String deployName, InputStream content)
Deploy a artifact (VDB, JAR, RAR files)void
Admin. deploy(String deployName, InputStream content, boolean persistent)
Deploy a artifact (VDB, JAR, RAR files)void
Admin. deployVDBZip(URL url)
Deploy a .vdb or .zip vdb.Collection<? extends CacheStatistics>
Admin. getCacheStats(String cacheType)
Get the Cache Statistics for the given typeCollection<String>
Admin. getCacheTypes()
Get the Caches that correspond to the specified identifier patternProperties
Admin. getDataSource(String deployedName)
Given the deployed name of the data source, this will return all the configuration properties used to create the datasource.Collection<String>
Admin. getDataSourceNames()
Returns the all names of all the data sources available in the configuration.Set<String>
Admin. getDataSourceTemplateNames()
Get the Datasource templates available in the configuration.List<String>
Admin. getDeployments()
Get existing deployments on in the sysemCollection<? extends EngineStatistics>
Admin. getEngineStats()
Get the Engine Statistics for the given typeString
Admin. getQueryPlan(String sessionId, long executionId)
Get the Query Plan for the given session with provided execution id.Collection<? extends Request>
Admin. getRequests()
Get the all Requests that are currently in processCollection<? extends Request>
Admin. getRequestsForSession(String sessionId)
Get the Requests for the given sessionString
Admin. getSchema(String vdbName, int vdbVersion, String modelName, EnumSet<Admin.SchemaObjectType> allowedTypes, String typeNamePattern)
Deprecated.String
Admin. getSchema(String vdbName, String vdbVersion, String modelName, EnumSet<Admin.SchemaObjectType> allowedTypes, String typeNamePattern)
Retrieve the schema of the given modelCollection<? extends Session>
Admin. getSessions()
Get all the current Sessions.Collection<? extends PropertyDefinition>
Admin. getTemplatePropertyDefinitions(String templateName)
Get all of the available configuration Properties for the specified connectorCollection<? extends Transaction>
Admin. getTransactions()
Get all transaction matching the identifier.Translator
Admin. getTranslator(String deployedName)
Get the translator by the given the deployed name.Collection<? extends PropertyDefinition>
Admin. getTranslatorPropertyDefinitions(String translatorName)
Deprecated.Collection<? extends PropertyDefinition>
Admin. getTranslatorPropertyDefinitions(String translatorName, Admin.TranlatorPropertyType type)
Get all of the available configuration Properties for the specified translatorCollection<? extends Translator>
Admin. getTranslators()
Get the translators that are available in the configurationVDB
Admin. getVDB(String vdbName, int vdbVersion)
Deprecated.VDB
Admin. getVDB(String vdbName, String vdbVersion)
Get the VDBCollection<? extends VDB>
Admin. getVDBs()
Get the VDBs that are currently deployed in the systemCollection<? extends VDB>
Admin. getVDBs(boolean singleInstance)
Get the VDBs that are currently deployed in the systemCollection<? extends WorkerPoolStatistics>
Admin. getWorkerPoolStats()
Get the Worker Pool statistics in runtime engine.void
Admin. markDataSourceAvailable(String jndiName)
Tell the engine that the given source is available.void
Admin. removeDataRoleMapping(String vdbName, int vdbVersion, String dataRole, String mappedRoleName)
Deprecated.void
Admin. removeDataRoleMapping(String vdbName, String vdbVersion, String dataRole, String mappedRoleName)
Remove a Role name to the Data Role in a given VDBvoid
Admin. removeSource(String vdbName, int vdbVersion, String modelName, String sourceName)
Deprecated.void
Admin. removeSource(String vdbName, String vdbVersion, String modelName, String sourceName)
Removes aTranslator
and Data source from aVDB
's Modelvoid
Admin. restartVDB(String vdbName, int vdbVersion, String... models)
Deprecated.void
Admin. restartVDB(String vdbName, String vdbVersion, String... models)
Restart the VDB.void
Admin. setAnyAuthenticatedForDataRole(String vdbName, int vdbVersion, String dataRole, boolean anyAuthenticated)
Deprecated.void
Admin. setAnyAuthenticatedForDataRole(String vdbName, String vdbVersion, String dataRole, boolean anyAuthenticated)
Set the any authenticated flag on the Data Role in a given VDBvoid
Admin. terminateSession(String sessionId)
Terminate the Sessionvoid
Admin. terminateTransaction(String transactionId)
Mark the given global transaction as rollback only.void
Admin. undeploy(String deployedName)
Undeploy artifact (VDB, JAR, RAR files)void
Admin. updateSource(String vdbName, int vdbVersion, String sourceName, String translatorName, String dsName)
Deprecated.void
Admin. updateSource(String vdbName, String vdbVersion, String sourceName, String translatorName, String dsName)
Update a source'sTranslator
and Data source -
Uses of AdminException in org.teiid.adminapi.jboss
Methods in org.teiid.adminapi.jboss that throw AdminException Modifier and Type Method Description void
AdminFactory.AdminImpl. addDataRoleMapping(String vdbName, int vdbVersion, String dataRole, String mappedRoleName)
void
AdminFactory.AdminImpl. addDataRoleMapping(String vdbName, String vdbVersion, String dataRole, String mappedRoleName)
void
AdminFactory.AdminImpl. addSource(String vdbName, int vdbVersion, String modelName, String sourceName, String translatorName, String dsName)
void
AdminFactory.AdminImpl. addSource(String vdbName, String vdbVersion, String modelName, String sourceName, String translatorName, String dsName)
void
AdminFactory.AdminImpl. cancelRequest(String sessionId, long executionId)
void
AdminFactory.AdminImpl. changeVDBConnectionType(String vdbName, int vdbVersion, VDB.ConnectionType type)
void
AdminFactory.AdminImpl. changeVDBConnectionType(String vdbName, String vdbVersion, VDB.ConnectionType type)
void
AdminFactory.AdminImpl. clearCache(String cacheType)
void
AdminFactory.AdminImpl. clearCache(String cacheType, String vdbName, int vdbVersion)
void
AdminFactory.AdminImpl. clearCache(String cacheType, String vdbName, String vdbVersion)
Admin
AdminFactory. createAdmin(String host, int port, String userName, char[] password)
Creates a ServerAdmin with the specified connection properties.Admin
AdminFactory. createAdmin(String host, int port, String userName, char[] password, String profileName)
Creates a ServerAdmin with the specified connection properties.void
AdminFactory.AdminImpl. createDataSource(String deploymentName, String templateName, Properties properties)
void
AdminFactory.AdminImpl. deleteDataSource(String deployedName)
void
AdminFactory.AdminImpl. deploy(String deployName, InputStream vdb)
void
AdminFactory.AdminImpl. deploy(String deployName, InputStream vdb, boolean persist)
void
AdminFactory.AdminImpl. deployVDBZip(URL url)
Collection<? extends CacheStatistics>
AdminFactory.AdminImpl. getCacheStats(String cacheType)
Collection<String>
AdminFactory.AdminImpl. getCacheTypes()
Properties
AdminFactory.AdminImpl. getDataSource(String deployedName)
Collection<String>
AdminFactory.AdminImpl. getDataSourceNames()
/subsystem=datasources:read-children-names(child-type=data-source) /subsystem=resource-adapters/resource-adapter={rar-file}:read-resourceSet<String>
AdminFactory.AdminImpl. getDataSourceTemplateNames()
Collection<? extends EngineStatistics>
AdminFactory.AdminImpl. getEngineStats()
Set<String>
AdminFactory.AdminImpl. getInstalledJDBCDrivers()
String
AdminFactory.AdminImpl. getQueryPlan(String sessionId, long executionId)
Collection<? extends Request>
AdminFactory.AdminImpl. getRequests()
Collection<? extends Request>
AdminFactory.AdminImpl. getRequestsForSession(String sessionId)
String
AdminFactory.AdminImpl. getSchema(String vdbName, int vdbVersion, String modelName, EnumSet<Admin.SchemaObjectType> allowedTypes, String typeNamePattern)
String
AdminFactory.AdminImpl. getSchema(String vdbName, String vdbVersion, String modelName, EnumSet<Admin.SchemaObjectType> allowedTypes, String typeNamePattern)
Collection<? extends Session>
AdminFactory.AdminImpl. getSessions()
Collection<PropertyDefinition>
AdminFactory.AdminImpl. getTemplatePropertyDefinitions(String templateName)
pattern on CLI /subsystem=datasources/data-source=foo:read-resource-descriptionCollection<? extends Transaction>
AdminFactory.AdminImpl. getTransactions()
Translator
AdminFactory.AdminImpl. getTranslator(String deployedName)
Collection<? extends PropertyDefinition>
AdminFactory.AdminImpl. getTranslatorPropertyDefinitions(String translatorName)
Deprecated.Collection<? extends PropertyDefinition>
AdminFactory.AdminImpl. getTranslatorPropertyDefinitions(String translatorName, Admin.TranlatorPropertyType type)
Collection<? extends Translator>
AdminFactory.AdminImpl. getTranslators()
VDB
AdminFactory.AdminImpl. getVDB(String vdbName, int vdbVersion)
VDB
AdminFactory.AdminImpl. getVDB(String vdbName, String vdbVersion)
List<? extends VDB>
AdminFactory.AdminImpl. getVDBs()
List<? extends VDB>
AdminFactory.AdminImpl. getVDBs(boolean singleInstance)
Collection<? extends WorkerPoolStatistics>
AdminFactory.AdminImpl. getWorkerPoolStats()
void
AdminFactory.AdminImpl. markDataSourceAvailable(String jndiName)
void
AdminFactory.AdminImpl. removeDataRoleMapping(String vdbName, int vdbVersion, String dataRole, String mappedRoleName)
void
AdminFactory.AdminImpl. removeDataRoleMapping(String vdbName, String vdbVersion, String dataRole, String mappedRoleName)
void
AdminFactory.AdminImpl. removeSource(String vdbName, int vdbVersion, String modelName, String sourceName)
void
AdminFactory.AdminImpl. removeSource(String vdbName, String vdbVersion, String modelName, String sourceName)
void
AdminFactory.AdminImpl. restartVDB(String vdbName, int vdbVersion, String... models)
void
AdminFactory.AdminImpl. restartVDB(String vdbName, String vdbVersion, String... models)
void
AdminFactory.AdminImpl. setAnyAuthenticatedForDataRole(String vdbName, int vdbVersion, String dataRole, boolean anyAuthenticated)
void
AdminFactory.AdminImpl. setAnyAuthenticatedForDataRole(String vdbName, String vdbVersion, String dataRole, boolean anyAuthenticated)
void
AdminFactory.AdminImpl. terminateSession(String sessionId)
void
AdminFactory.AdminImpl. terminateTransaction(String transactionId)
void
AdminFactory.AdminImpl. undeploy(String deployedName)
void
AdminFactory.AdminImpl. undeploy(String deployedName, boolean force)
void
AdminFactory.AdminImpl. updateSource(String vdbName, int vdbVersion, String sourceName, String translatorName, String dsName)
void
AdminFactory.AdminImpl. updateSource(String vdbName, String vdbVersion, String sourceName, String translatorName, String dsName)
-
Uses of AdminException in org.teiid.dqp.internal.process
Methods in org.teiid.dqp.internal.process that throw AdminException Modifier and Type Method Description void
DQPCore. terminateTransaction(String xid)
void
TransactionServerImpl. terminateTransaction(String threadId)
-
Uses of AdminException in org.teiid.dqp.service
Methods in org.teiid.dqp.service that throw AdminException Modifier and Type Method Description void
TransactionService. terminateTransaction(String threadId)
-
Uses of AdminException in org.teiid.runtime
Methods in org.teiid.runtime that throw AdminException Modifier and Type Method Description void
EmbeddedAdminImpl. addDataRoleMapping(String vdbName, int vdbVersion, String dataRole, String mappedRoleName)
void
EmbeddedAdminImpl. addDataRoleMapping(String vdbName, String vdbVersion, String dataRole, String mappedRoleName)
void
EmbeddedAdminImpl. addSource(String vdbName, int vdbVersion, String modelName, String sourceName, String translatorName, String dsName)
void
EmbeddedAdminImpl. addSource(String vdbName, String vdbVersion, String modelName, String sourceName, String translatorName, String dsName)
void
EmbeddedAdminImpl. cancelRequest(String sessionId, long executionId)
void
EmbeddedAdminImpl. changeVDBConnectionType(String vdbName, int vdbVersion, VDB.ConnectionType type)
void
EmbeddedAdminImpl. changeVDBConnectionType(String vdbName, String vdbVersion, VDB.ConnectionType type)
void
EmbeddedAdminImpl. clearCache(String cacheType)
void
EmbeddedAdminImpl. clearCache(String cacheType, String vdbName, int vdbVersion)
void
EmbeddedAdminImpl. clearCache(String cacheType, String vdbName, String vdbVersion)
void
EmbeddedAdminImpl. createDataSource(String deploymentName, String templateName, Properties properties)
void
EmbeddedAdminImpl. deleteDataSource(String deployedName)
void
EmbeddedAdminImpl. deploy(String deployName, InputStream content)
void
EmbeddedAdminImpl. deploy(String deployName, InputStream content, boolean peristent)
Collection<? extends CacheStatistics>
EmbeddedAdminImpl. getCacheStats(String cacheType)
Collection<String>
EmbeddedAdminImpl. getCacheTypes()
Properties
EmbeddedAdminImpl. getDataSource(String deployedName)
Collection<String>
EmbeddedAdminImpl. getDataSourceNames()
Set<String>
EmbeddedAdminImpl. getDataSourceTemplateNames()
List<String>
EmbeddedAdminImpl. getDeployments()
Collection<? extends EngineStatistics>
EmbeddedAdminImpl. getEngineStats()
String
EmbeddedAdminImpl. getQueryPlan(String sessionId, long executionId)
Collection<? extends Request>
EmbeddedAdminImpl. getRequests()
Collection<? extends Request>
EmbeddedAdminImpl. getRequestsForSession(String sessionId)
String
EmbeddedAdminImpl. getSchema(String vdbName, int vdbVersion, String modelName, EnumSet<Admin.SchemaObjectType> allowedTypes, String typeNamePattern)
String
EmbeddedAdminImpl. getSchema(String vdbName, String vdbVersion, String modelName, EnumSet<Admin.SchemaObjectType> allowedTypes, String typeNamePattern)
Collection<? extends Session>
EmbeddedAdminImpl. getSessions()
Collection<? extends PropertyDefinition>
EmbeddedAdminImpl. getTemplatePropertyDefinitions(String templateName)
Collection<? extends Transaction>
EmbeddedAdminImpl. getTransactions()
Translator
EmbeddedAdminImpl. getTranslator(String deployedName)
Collection<? extends PropertyDefinition>
EmbeddedAdminImpl. getTranslatorPropertyDefinitions(String translatorName)
Collection<? extends PropertyDefinition>
EmbeddedAdminImpl. getTranslatorPropertyDefinitions(String translatorName, Admin.TranlatorPropertyType type)
Collection<? extends Translator>
EmbeddedAdminImpl. getTranslators()
VDB
EmbeddedAdminImpl. getVDB(String vdbName, int vdbVersion)
VDB
EmbeddedAdminImpl. getVDB(String vdbName, String vdbVersion)
Collection<? extends VDB>
EmbeddedAdminImpl. getVDBs()
Collection<? extends VDB>
EmbeddedAdminImpl. getVDBs(boolean singleInstance)
Collection<? extends WorkerPoolStatistics>
EmbeddedAdminImpl. getWorkerPoolStats()
void
EmbeddedAdminImpl. markDataSourceAvailable(String jndiName)
void
EmbeddedAdminImpl. removeDataRoleMapping(String vdbName, int vdbVersion, String dataRole, String mappedRoleName)
void
EmbeddedAdminImpl. removeDataRoleMapping(String vdbName, String vdbVersion, String dataRole, String mappedRoleName)
void
EmbeddedAdminImpl. removeSource(String vdbName, int vdbVersion, String modelName, String sourceName)
void
EmbeddedAdminImpl. removeSource(String vdbName, String vdbVersion, String modelName, String sourceName)
void
EmbeddedAdminImpl. restartVDB(String vdbName, int vdbVersion, String... models)
void
EmbeddedAdminImpl. restartVDB(String vdbName, String vdbVersion, String... models)
void
EmbeddedAdminImpl. setAnyAuthenticatedForDataRole(String vdbName, int vdbVersion, String dataRole, boolean anyAuthenticated)
void
EmbeddedAdminImpl. setAnyAuthenticatedForDataRole(String vdbName, String vdbVersion, String dataRole, boolean anyAuthenticated)
void
EmbeddedAdminImpl. terminateSession(String sessionId)
void
EmbeddedAdminImpl. terminateTransaction(String transactionId)
void
EmbeddedAdminImpl. undeploy(String deployedName)
void
EmbeddedAdminImpl. updateSource(String vdbName, int vdbVersion, String sourceName, String translatorName, String dsName)
void
EmbeddedAdminImpl. updateSource(String vdbName, String vdbVersion, String sourceName, String translatorName, String dsName)
-
Uses of AdminException in org.teiid.runtime.jmx
Methods in org.teiid.runtime.jmx that throw AdminException Modifier and Type Method Description void
TeiidBean. cancelRequest(String sessionId, long executionId)
Cancel RequestList<RequestBean>
TeiidBean. getRequests()
Get the all Requests that are currently in processList<SessionBean>
TeiidBean. getSessions()
Get all the current Sessions.void
TeiidBean. terminateSession(String sessionId)
Terminate the Sessionvoid
TeiidBean. terminateTransaction(String transactionId)
Mark the given global transaction as rollback only. -
Uses of AdminException in org.teiid.runtime.util
Methods in org.teiid.runtime.util that throw AdminException Modifier and Type Method Description static String
ConvertVDB. convert(File f)
-