public interface TestAutomationServerManagerService
| Modifier and Type | Method and Description |
|---|---|
void |
changeDescription(long serverId,
String description) |
void |
changeLogin(long serverId,
String login) |
void |
changeManualSlaveSelection(long serverId,
boolean hasSlaves) |
void |
changeName(long serverId,
String newName)
Will change the name of the server.
|
void |
changePassword(long serverId,
String password) |
void |
changeURL(long serverId,
URL url) |
void |
deleteServer(List<Long> serverId)
Warning : When using this method there is a risk that your Hibernate beans are not up to
date.
|
void |
deleteServer(long serverId)
Warning : When using this method there is a risk that your Hibernate beans are not up to
date.
|
List<org.squashtest.tm.domain.testautomation.TestAutomationServer> |
findAllOrderedByName() |
org.squashtest.tm.domain.testautomation.TestAutomationServer |
findById(long serverId) |
org.springframework.data.domain.Page<org.squashtest.tm.domain.testautomation.TestAutomationServer> |
findSortedTestAutomationServers(org.springframework.data.domain.Pageable pageable) |
boolean |
hasBoundProjects(long serverId) |
boolean |
hasExecutedTests(long serverId) |
void |
persist(org.squashtest.tm.domain.testautomation.TestAutomationServer server)
Will persist a new
TestAutomationServer. |
org.squashtest.tm.domain.testautomation.TestAutomationServer findById(long serverId)
void persist(org.squashtest.tm.domain.testautomation.TestAutomationServer server)
TestAutomationServer.server - : the server to persistNonUniqueEntityException - if the given server happen to exist already.boolean hasBoundProjects(long serverId)
boolean hasExecutedTests(long serverId)
void deleteServer(long serverId)
Warning : When using this method there is a risk that your Hibernate beans are not up to
date. Use Session.clear() and Session.refresh(Object) to make sure your they are.
serverId - void deleteServer(List<Long> serverId)
Warning : When using this method there is a risk that your Hibernate beans are not up to
date. Use Session.clear() and Session.refresh(Object) to make sure your they are.
serverId - List<org.squashtest.tm.domain.testautomation.TestAutomationServer> findAllOrderedByName()
org.springframework.data.domain.Page<org.squashtest.tm.domain.testautomation.TestAutomationServer> findSortedTestAutomationServers(org.springframework.data.domain.Pageable pageable)
void changeURL(long serverId,
URL url)
void changeName(long serverId,
String newName)
serverId - : id of the TestAutomationServer to change the name ofnewName - : the new name for the concerned serverorg.squashtest.tm.exception.NameAlreadyInUseException - if name already exists in databasevoid changeLogin(long serverId,
String login)
void changePassword(long serverId,
String password)
void changeDescription(long serverId,
String description)
void changeManualSlaveSelection(long serverId,
boolean hasSlaves)
Copyright © 2010–2017 Henix, henix.fr. All rights reserved.