Class TagServiceImpl

    • Method Detail

      • get

        public TagService.GetRequest get()
        Description copied from interface: TagService
        Gets the information about the tag. For example to retrieve the information about the tag with the id `123` send a request like this: .... GET /ovirt-engine/api/tags/123 .... [source,xml] ---- root root ----
        Specified by:
        get in interface TagService
      • remove

        public TagService.RemoveRequest remove()
        Description copied from interface: TagService
        Removes the tag from the system. For example to remove the tag with id `123` send a request like this: .... DELETE /ovirt-engine/api/tags/123 ....
        Specified by:
        remove in interface TagService
      • update

        public TagService.UpdateRequest update()
        Description copied from interface: TagService
        Updates the tag entity. For example to update parent tag to tag with id `456` of the tag with id `123` send a request like this: .... PUT /ovirt-engine/api/tags/123 .... With request body like: [source,xml] ---- ---- You may also specify a tag name instead of id. For example to update parent tag to tag with name `mytag` of the tag with id `123` send a request like this: [source,xml] ---- mytag ----
        Specified by:
        update in interface TagService
      • service

        public Service service​(String path)
        Description copied from interface: TagService
        Service locator method, returns individual service on which the URI is dispatched.
        Specified by:
        service in interface TagService