Skip to content
Snippets Groups Projects
Commit cf32b0be authored by Alex Reimers's avatar Alex Reimers
Browse files

Small comment update.

parent 82b4a63d
No related branches found
No related tags found
No related merge requests found
......@@ -11,7 +11,7 @@ public class VirtualNetworkWebRoutable implements RestletRoutable {
@Override
public Restlet getRestlet(Context context) {
Router router = new Router(context);
router.attach("/tenants/{tenant}/networks/{network}", NetworkResource.class); // PUT, GET, DELETE
router.attach("/tenants/{tenant}/networks/{network}", NetworkResource.class); // PUT, DELETE
router.attach("/tenants/{tenant}/networks", NetworkResource.class); // POST
router.attach("/tenants/{tenant}/networks/{network}/ports/{port}/attachment", HostResource.class);
router.attachDefault(NoOp.class);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment