Class SimpleDocumentListResource

    • Constructor Detail

      • SimpleDocumentListResource

        public SimpleDocumentListResource()
    • Method Detail

      • getResourceId

        public String getResourceId()
      • getDocuments

        @GET
        @Path("{lang}")
        @Produces("application/json")
        public List<SimpleDocumentEntity> getDocuments​(@PathParam("lang")
                                                       String lang)
        Returns documents of specified resource in the specified language
        Parameters:
        lang - the wanted language.
        Returns:
        documents of specified resource
      • getDocumentsByType

        @GET
        @Path("types/{type}/{lang}")
        @Produces("application/json")
        public List<SimpleDocumentEntity> getDocumentsByType​(@PathParam("type")
                                                             String type,
                                                             @PathParam("lang")
                                                             String lang)
        Returns documents of specified resource in the specified language
        Parameters:
        lang - the wanted language.
        Returns:
        documents of specified resource
      • validateUserAuthorization

        public void validateUserAuthorization​(UserPrivilegeValidation validation)
        Description copied from interface: ProtectedWebResource
        Validates the authorization of the user to request this web service. For doing, the user must have the rights to access the component instance that manages this web resource. If no such component instance exists, a Not Found HTTP error is thrown (status code 404). Otherwise the validation is delegated to the validation service by passing it the required information.

        This method should be invoked for web service requiring an authorized access. For doing, the authentication of the user must be first valdiated. Otherwise, the annotation Authorized can be also used instead at class level for both authentication and authorization.

        Parameters:
        validation - the validation instance to use.
        See Also:
        UserPrivilegeValidator