Uses of Class
com.projectdarkstar.tools.dtc.exceptions.DTCServiceException

Packages that use DTCServiceException
com.projectdarkstar.tools.dtc.exceptions   
com.projectdarkstar.tools.dtc.service   
 

Uses of DTCServiceException in com.projectdarkstar.tools.dtc.exceptions
 

Subclasses of DTCServiceException in com.projectdarkstar.tools.dtc.exceptions
 class DTCInvalidDataException
          Thrown whenever data validation occurs for a DTC service
 class DTCNotFoundException
          Thrown whenever data is not found for a DTC service
 

Uses of DTCServiceException in com.projectdarkstar.tools.dtc.service
 

Methods in com.projectdarkstar.tools.dtc.service that throw DTCServiceException
 Long ConfigAppsService.addClientApp(ClientAppDTO clientApp)
          Add a ClientApp to persistent storage based on the given clientApp.
 Long ConfigAppsService.addClientAppConfig(ClientAppConfigDTO clientAppConfig)
          Add a ClientAppConfig to persistent storage based on the given clientAppConfig.
 void RuntimeExecutionsService.addClientDataPoint(Long testExecutionResultId, TestExecutionResultClientDataDTO data)
          Add a new data point representing the number of realtime clients in the system at a single point in time.
 Long ConfigResourcesService.addHardwareResource(HardwareResourceDTO hardwareResource)
          Add a HardwareResource object to persistent storage based on the given hardwareResource.
 Long ConfigResourcesService.addHardwareResourceFamily(HardwareResourceFamilyDTO hardwareResourceFamily)
          Add a HardwareResourceFamily object to persistent storage based on the given hardwareResourceFamily
 Long ConfigResourcesService.addPkgLibrary(PkgLibraryDTO pkgLibrary, String tags)
          Add a PkgLibrary object based on the given pkgLibrary to persistent storage.
 void RuntimeExecutionsService.addProbeDataPoint(Long probeLogId, TestExecutionResultProbeDataDTO data)
          Add a new data point collected by a probe.
 Long ConfigAppsService.addServerApp(ServerAppDTO serverApp)
          Add a ServerApp object based on the given serverApp to persistent storage.
 Long ConfigAppsService.addServerAppConfig(ServerAppConfigDTO serverAppConfig)
          Add a ServerAppConfig object based on the given serverAppConfig to persistent storage.
 Long ConfigAppsService.addSystemProbe(SystemProbeDTO systemProbe, String tags)
          Add a SystemProbe to persistent storage based on the given systemProbe.
 Long ConfigTestsService.addTestSpec(TestSpecDTO testSpec)
          Creates a TestSpec object based on the given testSpec and persists it to the database backed persistent storage.
 Long ConfigTestsService.addTestSuite(TestSuiteDTO testSuite)
          Creates a TestSuite object based on the given testSuite and persists it to the database backed persistent storage.
 void RuntimeExecutionsService.appendClientLog(Long clientLogId, String chunk)
          Update the logFile attribute of the TestExecutionResultClientLog object with the given id by appending the given chunk of the log to the end
 void RuntimeExecutionsService.appendProbeLog(Long probeLogId, String chunk)
          Update the logFile attribute of the TestExecutionResultProbeLog object with the given id by appending the given chunk of the log to the end.
 void RuntimeExecutionsService.appendServerLog(Long serverLogId, String chunk)
          Update the logFile attribute of the TestExecutionResultServerLog object by appending the given chunk of the log to the end.
 Long ConfigExecutionsService.cloneTestExecution(Long testExecutionId, String name, String tags)
          Creates a new TestExecution which is an exact replica of the TestExecution with the given id.
 void ConfigAppsService.deleteClientApp(Long id)
          Remove the ClientApp with the given id from persistent storage.
 void ConfigAppsService.deleteClientAppConfig(Long id)
          Remove the ClientAppConfig with the given id from persistent storage.
 void ConfigResourcesService.deleteHardwareResource(Long id)
          Remove the HardwareResource with the given id from persistent storage.
 void ConfigResourcesService.deleteHardwareResourceFamily(Long id)
          Remove the HardwareResourceFamily with the given id from persistent storage.
 void ConfigResourcesService.deletePkgLibrary(Long id)
          Remove the PkgLibrary with the given id from persistent storage.
 void ConfigAppsService.deleteServerApp(Long id)
          Remove the ServerApp with the given id from persistent storage.
 void ConfigAppsService.deleteServerAppConfig(Long id)
          Remove the ServerAppConfig with the given id from persistent storage.
 void ConfigAppsService.deleteSystemProbe(Long id)
          Remove the SystemProbe with the given id from persistent storage.
 void ConfigTestsService.deleteTestSpec(Long id)
          Remove the TestSpec object with the given id from persistent storage.
 void ConfigTestsService.deleteTestSuite(Long id)
          Remove the TestSuite with the given id from persistent storage.
 Long ConfigExecutionsService.generateTestExecution(Long testSuiteId, String name, String tags)
          Generates a new TestExecution based on the TestSuite with the given id.
 void LaunchService.rerunTestExecution(Long testExecutionId, String name, String tags)
           Schedule execution of a new TestExecution based on the TestExecution with the given id.
 void LaunchService.rerunTestExecutionAgainstNewDarkstar(Long testExecutionId, String name, String tags, PkgLibraryDTO darkstarPkg)
           Schedule execution of a new TestExecution based on the TestExecution with the given id to be run against the given darkstar application.
 void LaunchService.rerunTestExecutionAgainstNewServerApp(Long testExecutionId, String name, String tags, PkgLibraryDTO darkstarPkg)
           Schedule execution of a new TestExecution based on the TestExecution with the given id to be run against the given server application.
 void LaunchService.runTestExecution(Long testExecutionId)
           Schedule execution of the TestExecution with the given id.
 void LaunchService.runTestSuite(Long testSuiteId, String name, String tags)
           Schedule execution of the TestSuite with the given id.
 void LaunchService.runTestSuiteAgainstNewDarkstar(Long testSuiteId, String name, String tags, PkgLibraryDTO darkstarPkg)
           Schedule execution of the TestSuite with the given id to be run against the given darkstar package.
 void LaunchService.runTestSuiteAgainstNewServerApp(Long testSuiteId, String name, String tags, PkgLibraryDTO serverPkg)
           Schedule execution of the TestSuite with the given id to be run against the given server application package.
 void ConfigAppsService.updateClientApp(Long id, Map<String,Object> updates)
          Update the ClientApp with the given id.
 void ConfigAppsService.updateClientAppConfig(Long id, Map<String,Object> updates)
          Update the ClientAppConfig with the given id.
 void RuntimeExecutionsService.updateClientLog(Long clientLogId, LogFileDTO logFile)
          Update the logFile attribute of the TestExecutionResultClientLog object with the given id.
 void ConfigResourcesService.updateHardwareResource(Long id, Map<String,Object> updates)
          Update the HardwareResource in storage with the given id.
 void ConfigResourcesService.updateHardwareResourceFamily(Long id, Map<String,Object> updates)
          Update the HardwareResourceFamily in storage with the given id.
 void ConfigResourcesService.updatePkgLibrary(Long id, Map<String,Object> updates)
          Update the PkgLibrary object with the given id.
 void RuntimeExecutionsService.updateProbeLog(Long probeLogId, LogFileDTO logFile)
          Update the logFile attribute of the TestExecutionResultProbeLog object with the given id.
 void ConfigAppsService.updateServerApp(Long id, Map<String,Object> updates)
          Update the ServerApp in storage with the given id.
 void ConfigAppsService.updateServerAppConfig(Long id, Map<String,Object> updates)
          Update the ServerAppConfig in storage with the given id.
 void RuntimeExecutionsService.updateServerLog(Long serverLogId, LogFileDTO logFile)
          Update the logFile attribute of the TestExecutionResultServerLog object with the given id.
 void ConfigAppsService.updateSystemProbe(Long id, Map<String,Object> updates)
          Update the SystemProbe with the given id in persistent storage.
 void ConfigExecutionsService.updateTestExecution(Long testExecutionId, Map<String,Object> updates)
           Update the TestExecution in storage with the given id.
 void RuntimeExecutionsService.updateTestResult(Long testExecutionResultId, TestExecutionResultValueDTO result)
          Update the result of a test execution
 void ConfigTestsService.updateTestSpec(Long id, Map<String,Object> updates)
          Updates a TestSpec object in persistent storage with the given id.
 void ConfigTestsService.updateTestSuite(Long id, Map<String,Object> updates)
          Updates a TestSuite object in persistent storage with the given id.
 



Copyright © 2013. All Rights Reserved.