Package pl.edu.icm.unity.engine.api
Interface EndpointManagement
public interface EndpointManagement
Management of endpoints
- Author:
- K. Benedyczak
-
Method Summary
Modifier and TypeMethodDescriptiondeploy
(String typeId, String endpointName, String address, EndpointConfiguration configuration) Deploys a new instance of an endpoint of id type, at address location.getEndpoint
(String name) void
removeEndpoint
(String id) Removes endpoint with given namevoid
Removes a deployed endpointvoid
updateEndpoint
(String id, EndpointConfiguration configuration) Updates a deployed endpoint configuration
-
Method Details
-
getEndpointTypes
- Returns:
- available endpoint types
- Throws:
EngineException
-
getDeployedEndpoints
- Returns:
- list of deployed endpoints
- Throws:
EngineException
-
deploy
ResolvedEndpoint deploy(String typeId, String endpointName, String address, EndpointConfiguration configuration) throws EngineException Deploys a new instance of an endpoint of id type, at address location. Address is a path in web app context for the servlet endpoints.- Parameters:
typeId
-endpointName
- identifier to be given to the endpointaddress
-configuration
-- Throws:
EngineException
-
undeploy
Removes a deployed endpoint- Parameters:
id
- endpoint instance id.- Throws:
EngineException
-
updateEndpoint
Updates a deployed endpoint configuration- Parameters:
id
- mandatory id of a deployed endpointconfiguration
- updated configuration, can have null elements to leave the existing values unchanged.- Throws:
EngineException
-
getEndpoints
- Returns:
- all endpoints from db
- Throws:
AuthorizationException
-
removeEndpoint
Removes endpoint with given name- Parameters:
id
- mandatory id of removed endpoint- Throws:
EngineException
-
getEndpoint
- Parameters:
name
- endpoint name- Returns:
- Throws:
AuthorizationException
-
getDeployedEndpointInstances
- Returns:
- list of deployed endpoints
- Throws:
AuthorizationException
-