Convert yanglib to new web API
[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.YangLibService;
15
16 public class YangLibRestApp extends Application {
17     private final YangLibService yangLibService;
18
19     public YangLibRestApp(YangLibService yangLibService) {
20         this.yangLibService = yangLibService;
21     }
22
23     @Override
24     public Set<Object> getSingletons() {
25         return Collections.<Object>singleton(this.yangLibService);
26     }
27 }