Package org.jbpm.designer.web.profile
Interface IDiagramProfileService
-
- All Known Implementing Classes:
ProfileServiceImpl
public interface IDiagramProfileService
The profile service gives access to profiles.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IDiagramProfile
findProfile(javax.servlet.http.HttpServletRequest request, String name)
Collection<IDiagramProfile>
getProfiles(javax.servlet.http.HttpServletRequest request)
void
init(javax.servlet.ServletContext servletContext)
Initialize the service with a particular context
-
-
-
Method Detail
-
findProfile
IDiagramProfile findProfile(javax.servlet.http.HttpServletRequest request, String name)
- Parameters:
request
- the contextname
- the name of the profile- Returns:
- the profile with the name in the context of that request
-
getProfiles
Collection<IDiagramProfile> getProfiles(javax.servlet.http.HttpServletRequest request)
- Parameters:
request
- the context- Returns:
- the profiles for the given context.
-
init
void init(javax.servlet.ServletContext servletContext)
Initialize the service with a particular context- Parameters:
servletContext
-
-
-