blob: 44d7c99fa21782a43bd951fa2ae9cab19ba999fc [file] [log] [blame]
Thomas Vachuska24c849c2014-10-27 09:53:05 -07001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2014-present Open Networking Foundation
Thomas Vachuska24c849c2014-10-27 09:53:05 -07003 *
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07004 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
Thomas Vachuska24c849c2014-10-27 09:53:05 -07007 *
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07008 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
Thomas Vachuska24c849c2014-10-27 09:53:05 -070015 */
tom0eb04ca2014-08-25 14:34:51 -070016package org.onlab.rest;
17
18import org.onlab.osgi.DefaultServiceDirectory;
19import org.onlab.osgi.ServiceDirectory;
20
Thomas Vachuskaca60f2b2014-11-06 01:34:28 -080021import javax.ws.rs.core.Response;
22
tom0eb04ca2014-08-25 14:34:51 -070023/**
24 * Base abstraction of a JAX-RS resource.
25 */
26public abstract class BaseResource {
27
28 private static ServiceDirectory services = new DefaultServiceDirectory();
29
30 /**
tom0eb04ca2014-08-25 14:34:51 -070031 * Returns reference to the specified service implementation.
32 *
33 * @param service service class
34 * @param <T> type of service
35 * @return service implementation
36 */
Thomas Vachuskaca60f2b2014-11-06 01:34:28 -080037 public <T> T get(Class<T> service) {
tom0eb04ca2014-08-25 14:34:51 -070038 return services.get(service);
39 }
40
Thomas Vachuskaca60f2b2014-11-06 01:34:28 -080041 protected static Response.ResponseBuilder ok(Object obj) {
42 return Response.ok(obj);
43 }
44
tom0eb04ca2014-08-25 14:34:51 -070045}