blob: 5886afe5c31cb6e9a42e29b0f7720ad60b722520 [file] [log] [blame]
Thomas Vachuska24c849c2014-10-27 09:53:05 -07001/*
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07002 * Copyright 2014 Open Networking Laboratory
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
21/**
22 * Base abstraction of a JAX-RS resource.
23 */
24public abstract class BaseResource {
25
26 private static ServiceDirectory services = new DefaultServiceDirectory();
27
28 /**
29 * Sets alternate service directory to be used for lookups.
30 * <p>
31 * Intended to ease unit testing and not intended for use in production.
32 * </p>
33 *
34 * @param serviceDirectory alternate service directory
35 */
36 public static void setServiceDirectory(ServiceDirectory serviceDirectory) {
37 services = serviceDirectory;
38 }
39
40 /**
41 * Returns reference to the specified service implementation.
42 *
43 * @param service service class
44 * @param <T> type of service
45 * @return service implementation
46 */
47 protected static <T> T get(Class<T> service) {
48 return services.get(service);
49 }
50
51}