You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@felix.apache.org by "Felix Meschberger (JIRA)" <ji...@apache.org> on 2008/06/02 15:51:45 UTC

[jira] Assigned: (FELIX-566) More RESTful management console URLs

     [ https://issues.apache.org/jira/browse/FELIX-566?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Felix Meschberger reassigned FELIX-566:
---------------------------------------

    Assignee: Felix Meschberger

> More RESTful management console URLs
> ------------------------------------
>
>                 Key: FELIX-566
>                 URL: https://issues.apache.org/jira/browse/FELIX-566
>             Project: Felix
>          Issue Type: Improvement
>          Components: Web Console
>            Reporter: Felix Meschberger
>            Assignee: Felix Meschberger
>
> Currently the Management Console URLs are not really REST-ful:
> > To get a list of bundles you access /system/console/list. This should rather be /system/console/bundles.
> > To get bundle details the URL is /system/console/bundledetails with a request property naming the bundle whose details are to be returned. This should rather be /system/console/bundles/x where x is the bundleID or some other identification of the bundle to access
> > To start (or stop or uninstall) a bundle a request to /system/console with an action parameter and a bundleId parameter is POSTed to the console. This should rather use the bundle URL - /system/console/bundles/x as above - and an action parameter denoting the action.
> > It should be possible to directly access a certain configuration by URL such as /system/console/configurations/<pid> where <pid> is the PID of the configuration or access /system/console/configurations to get all configurations.
> > etc.
> As a corollary to these changes the current interfaces Action and Render should be dropped and replaced by the venerable Servlet interface. This makes implementation of the URLs easier. On the downside, this might create big servlets for the HTML rendering, which might be solved by using helper classes.
> The servlets will need to be registered as OSGi services with appropriate service registration properties. The Console will only pick up servlets registered with the correct property settings.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.