01: /*
02: * Copyright 2005-2007 Noelios Consulting.
03: *
04: * The contents of this file are subject to the terms of the Common Development
05: * and Distribution License (the "License"). You may not use this file except in
06: * compliance with the License.
07: *
08: * You can obtain a copy of the license at
09: * http://www.opensource.org/licenses/cddl1.txt See the License for the specific
10: * language governing permissions and limitations under the License.
11: *
12: * When distributing Covered Code, include this CDDL HEADER in each file and
13: * include the License file at http://www.opensource.org/licenses/cddl1.txt If
14: * applicable, add the following below this CDDL HEADER, with the fields
15: * enclosed by brackets "[]" replaced with your own identifying information:
16: * Portions Copyright [yyyy] [name of copyright owner]
17: */
18:
19: package org.restlet.example.tutorial;
20:
21: import org.restlet.Application;
22: import org.restlet.Component;
23: import org.restlet.Restlet;
24: import org.restlet.Router;
25: import org.restlet.data.Protocol;
26:
27: /**
28: * Reaching target Resources
29: *
30: * @author Jerome Louvel (contact@noelios.com)
31: */
32: public class Part12 {
33: public static void main(String[] args) throws Exception {
34: // Create a component
35: Component component = new Component();
36: component.getServers().add(Protocol.HTTP, 8182);
37:
38: // Create an application
39: Application application = new Application(component
40: .getContext()) {
41: @Override
42: public Restlet createRoot() {
43: // Create a router
44: Router router = new Router(getContext());
45:
46: // Attach the resources to the router
47: router.attach("/users/{user}", UserResource.class);
48: router.attach("/users/{user}/orders",
49: OrdersResource.class);
50: router.attach("/users/{user}/orders/{order}",
51: OrderResource.class);
52:
53: // Return the root router
54: return router;
55: }
56: };
57:
58: // Attach the application to the component and start it
59: component.getDefaultHost().attach("", application);
60: component.start();
61: }
62:
63: }
|