Uses of Class
com.metamatrix.admin.RolesAllowed

Packages that use RolesAllowed
com.metamatrix.admin.api.core   
com.metamatrix.admin.api.server   
com.metamatrix.platform.admin.apiimpl   
com.metamatrix.server.admin.apiimpl   
 

Uses of RolesAllowed in com.metamatrix.admin.api.core
 

Classes in com.metamatrix.admin.api.core with annotations of type RolesAllowed
 interface CoreConfigAdmin
          This interface describes the methods to configure MetaMatrix.
 interface CoreMonitoringAdmin
          Used to access the monitorable components of the MetaMatrix system.
 interface CoreRuntimeStateAdmin
          This interface defines the methods to interact with the MetaMatrix system during runtime.
 interface CoreSecurityAdmin
          This interface defines the methods available for security administration in the MetaMatrix system.
 

Methods in com.metamatrix.admin.api.core with annotations of type RolesAllowed
 void CoreRuntimeStateAdmin.clearCache(java.lang.String cacheIdentifier)
          Clear the cache or caches specified by the cacheIdentifier.
 LogConfiguration CoreConfigAdmin.getLogConfiguration()
          Get the LogConfiguration
 java.util.Collection CoreMonitoringAdmin.getVDBs(java.lang.String vdbIdentifier)
          Get the VDBs that correspond to the specified identifier pattern.
 

Uses of RolesAllowed in com.metamatrix.admin.api.server
 

Classes in com.metamatrix.admin.api.server with annotations of type RolesAllowed
 interface ServerConfigAdmin
          Interface that exposes MetaMatrix server configuration for administration.
 interface ServerMonitoringAdmin
          Interface that exposes the MetaMatrix server for system monitoring.
 interface ServerRuntimeStateAdmin
          Interface that exposes the MetaMatrix system for runtime control.
 interface ServerSecurityAdmin
          Interface that exposes MetaMatrix security system for administration.
 

Methods in com.metamatrix.admin.api.server with annotations of type RolesAllowed
 void ServerAdmin.close()
          Closes ServerAdmin connection to the server.
 java.util.Collection ServerMonitoringAdmin.getProcesses(java.lang.String processIdentifier)
          Get the processes that correspond to the specified identifier pattern.
 

Uses of RolesAllowed in com.metamatrix.platform.admin.apiimpl
 

Classes in com.metamatrix.platform.admin.apiimpl with annotations of type RolesAllowed
 class AuthorizationAdminAPIImpl
           
 class ConfigurationAdminAPIImpl
           
 class ExtensionSourceAdminAPIImpl
           
 class RuntimeStateAdminAPIImpl
           
 

Methods in com.metamatrix.platform.admin.apiimpl with annotations of type RolesAllowed
 void AuthorizationAdminAPIImpl.addPrincipalsToRole(java.util.Set principals, java.lang.String roleName)
          Add the given set of principals to the given role.
 ExtensionModuleDescriptor ExtensionSourceAdminAPIImpl.addSource(java.lang.String type, java.lang.String sourceName, byte[] source, java.lang.String description, boolean enabled)
          Adds an extension source to the end of the list of sources
 java.util.List ConfigurationAdminAPIImpl.checkPropertiesDecryptable(java.util.List defns)
           
 AuthorizationEditor AuthorizationAdminAPIImpl.createEditor()
          Returns a AuthorizationObjectEditor to perform editing operations on a entitlement type object.
 java.util.Set ConfigurationAdminAPIImpl.executeTransaction(ActionDefinition action)
          Execute as a single transaction the specified action, and optionally return the set of objects or object IDs that were affected/modified by the action.
 java.util.Set AuthorizationAdminAPIImpl.executeTransaction(java.util.List actions)
           
 java.util.Set ConfigurationAdminAPIImpl.executeTransaction(java.util.List actions)
          Execute a list of actions, and optionally return the set of objects or object IDs that were affected/modified by the action.
 void AuthorizationAdminAPIImpl.removePrincipalsFromRole(java.util.Set principals, java.lang.String roleName)
          Remove the given set of principals from the given role.
 void ExtensionSourceAdminAPIImpl.removeSource(java.lang.String sourceName)
          Deletes a source from the list of sources
 void RuntimeStateAdminAPIImpl.restartService(ServiceID serviceID)
          Restart a failed or stopped service.
 java.util.List ExtensionSourceAdminAPIImpl.setEnabled(java.util.Collection sourceNames, boolean enabled)
          Sets the "enabled" (for searching) property of all of the indicated extension sources.
 void RuntimeStateAdminAPIImpl.setLoggingConfiguration(Configuration config, LogConfiguration logConfig, java.util.List actions)
          Sets the LogConfiguration on the given Configuration.
 java.util.List ExtensionSourceAdminAPIImpl.setSearchOrder(java.util.List sourceNames)
          Sets the positions in the search order of all sources (all sources must be included or an ExtensionSourceOrderingException will be thrown) The sourceNames List parameter should indicate the new desired order.
 ExtensionModuleDescriptor ExtensionSourceAdminAPIImpl.setSource(java.lang.String sourceName, byte[] source)
          Updates the indicated extension source
 ExtensionModuleDescriptor ExtensionSourceAdminAPIImpl.setSourceDescription(java.lang.String sourceName, java.lang.String description)
          Updates the indicated extension source's description
 ExtensionModuleDescriptor ExtensionSourceAdminAPIImpl.setSourceName(java.lang.String sourceName, java.lang.String newName)
          Updates the indicated extension source's source name
 void RuntimeStateAdminAPIImpl.shutdownServer()
          Gracefully shutdown server waiting for work to complete.
 void RuntimeStateAdminAPIImpl.startHost(java.lang.String host)
          Start Host and all processes/services for host.
 void RuntimeStateAdminAPIImpl.startProcess(java.lang.String host, java.lang.String process)
          Start Process and all services for process.
 void RuntimeStateAdminAPIImpl.stopHost(java.lang.String host)
          Stop host processes/services once work is complete.
 void RuntimeStateAdminAPIImpl.stopHostNow(java.lang.String host)
          Stop host processes/services now.
 void RuntimeStateAdminAPIImpl.stopProcess(java.lang.String hostName, java.lang.String processName, boolean now)
          Stop process once work is complete.
 void RuntimeStateAdminAPIImpl.stopService(ServiceID serviceID)
          Stop service once work is complete.
 void RuntimeStateAdminAPIImpl.stopServiceNow(ServiceID serviceID)
          Stop service now.
 void RuntimeStateAdminAPIImpl.synchronizeServer()
          Synchronize running services with runtime configuration.
 

Uses of RolesAllowed in com.metamatrix.server.admin.apiimpl
 

Classes in com.metamatrix.server.admin.apiimpl with annotations of type RolesAllowed
 class RuntimeMetadataAdminAPIImpl
           
 

Methods in com.metamatrix.server.admin.apiimpl with annotations of type RolesAllowed
 byte[] RuntimeMetadataAdminAPIImpl.getVDB(VirtualDatabaseID vdbID)
          Call to export a VDB to the local file system
 VirtualDatabase RuntimeMetadataAdminAPIImpl.importVDB(byte[] vdbStream)
           
 void RuntimeMetadataAdminAPIImpl.markVDBForDelete(VirtualDatabaseID vdbID)
          Mark a VirtualDataBase (VDB) for deletion.
 EntitlementMigrationReport RuntimeMetadataAdminAPIImpl.migrateEntitlements(VirtualDatabase targetVDB, char[] dataRoleContents, boolean overwriteExisting)
          Migrate as many existing entitlements as possible to a newly deployed VDB from a supplied roles xml file.
 EntitlementMigrationReport RuntimeMetadataAdminAPIImpl.migrateEntitlements(VirtualDatabase sourceVDB, VirtualDatabase targetVDB)
          Migrate as many existing entitlements as possible to a newly deployed VDB.
 void RuntimeMetadataAdminAPIImpl.setConnectorBindingNames(VirtualDatabaseID vdbID, java.util.Map modelAndCBNames)
          Set connector binding names for models in a virtual database.
 void RuntimeMetadataAdminAPIImpl.setVDBState(VirtualDatabaseID vdbID, short state)
          Updates the VirtualDatabase state.
 void RuntimeMetadataAdminAPIImpl.updateVirtualDatabase(VirtualDatabase vdb)
          Update a modified VirtualDataBase.
 



Copyright © 2009. All Rights Reserved.