Interface UserServiceDeclaration<S extends EntitySelection,​U extends ActivationContext<S>>

    • Method Detail

      • getServiceKey

        ServiceKey getServiceKey()
        Returns the identifier of the user service.

        The returned ServiceKey must conform to the current declaration context; for example, if the service is being declared in the context of a module its key must contain the current module name.

        This method is invoked only once, when the user service is registered.

        It is generally recommended to define a public Java constant holding the service key.

      • createUserService

        default UserService<S> createUserService()
        Creates a new user service implementation. It is strongly unadvised to return a user service with no parameter.

        This method is invoked every time the declared user service must be launched, once all activation controls have been performed.

      • defineActivation

        void defineActivation​(U aContext)
        Defines the activation scope and rules of the service, namely where and when it is available and can be executed.

        This method is invoked only once, when the user service is registered.

      • defineProperties

        void defineProperties​(UserServicePropertiesDefinitionContext aContext)
        Defines the properties of the user service, in particular its label and description.

        This method is invoked only once, when the user service is registered.

      • declareWebComponent

        void declareWebComponent​(WebComponentDeclarationContext aContext)
        Defines the web component properties of the user service, in particular its input and output parameters, and whether it can be available as a perspective action and/or workflow user task.

        This method is invoked only once, when the user service is registered.