cafcd116234467bc5b9875dfb143dbe58841d76d
[netconf.git] / netconf / yanglib / src / main / java / org / opendaylight / yanglib / impl / YangLibRestApp.java
1 /*
2  * Copyright (c) 2016 Cisco Systems, Inc. and others. All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.yanglib.impl;
10
11 import java.util.Collections;
12 import java.util.Set;
13 import javax.ws.rs.core.Application;
14 import org.opendaylight.yanglib.api.YangLibRestAppService;
15 import org.osgi.framework.FrameworkUtil;
16
17 public class YangLibRestApp extends Application implements YangLibRestAppService {
18
19     private final YangLibServiceImpl yangLibService;
20
21     public YangLibRestApp() {
22         this.yangLibService = new YangLibServiceImpl();
23         FrameworkUtil.getBundle(getClass()).getBundleContext().registerService(YangLibRestAppService.class.getName(),
24                 this, null);
25     }
26
27     @Override
28     public Set<Object> getSingletons() {
29         return Collections.<Object>singleton(this.yangLibService);
30     }
31
32     @Override
33     public YangLibServiceImpl getYangLibService() {
34         return yangLibService;
35     }
36 }