Package org.jbpm.designer.web.stencilset
Interface IDiagramStencilSetService
-
- All Known Implementing Classes:
StencilSetServiceImpl
public interface IDiagramStencilSetService
A service to access registered StencilSets.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IDiagramStencilSet
findStencilSet(javax.servlet.http.HttpServletRequest request, String name)
Finds a stencilset by name in the context of the request.Collection<IDiagramStencilSet>
getRegisteredStencilSets(javax.servlet.http.HttpServletRequest request)
-
-
-
Method Detail
-
getRegisteredStencilSets
Collection<IDiagramStencilSet> getRegisteredStencilSets(javax.servlet.http.HttpServletRequest request)
- Parameters:
request
- the request as context.- Returns:
- the registered stencilsets.
-
findStencilSet
IDiagramStencilSet findStencilSet(javax.servlet.http.HttpServletRequest request, String name)
Finds a stencilset by name in the context of the request.- Parameters:
request
- the request as context.name
- the name of a stencilset- Returns:
- the stencilset
-
-