Fix yanglib SFT failure
[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
16 public class YangLibRestApp extends Application implements YangLibRestAppService {
17     private final YangLibServiceImpl yangLibService = new YangLibServiceImpl();
18
19     @Override
20     public Set<Object> getSingletons() {
21         return Collections.<Object>singleton(this.yangLibService);
22     }
23
24     @Override
25     public YangLibServiceImpl getYangLibService() {
26         return yangLibService;
27     }
28 }