Class DocumentViewResource

    • Constructor Detail

      • DocumentViewResource

        public DocumentViewResource()
    • Method Detail

      • getAttachmentView

        @GET
        @Path("attachment/{id}")
        @Produces("application/json")
        public DocumentViewEntity getAttachmentView​(@PathParam("id")
                                                    String id,
                                                    @QueryParam("lang")
                                                    String language)
        Gets the JSON representation of document view information. If it doesn't exist, a 404 HTTP code is returned. If the user isn't authentified, a 401 HTTP code is returned. If a problem occurs when processing the request, a 503 HTTP code is returned.
        Parameters:
        id - the identifier of the JCR master node under which the document is handled.
        language - the language used to select the content to view.
        Returns:
        the response to the HTTP GET request with the JSON representation of preview information.
      • asWebEntity

        protected DocumentViewEntity asWebEntity​(DocumentView documentView)
        Converts the document view into its corresponding web entity.
        Parameters:
        documentView - the view to convert.
        Returns:
        the corresponding view entity.
      • getComponentId

        public String getComponentId()
        Description copied from interface: SilverpeasWebResource
        Gets the identifier of the component instance to which the requested resource belongs to.
        Returns:
        the identifier of the Silverpeas component instance.
      • 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