Bug 5528 - Connecting RESTful part to restconf + fix bugs
[netconf.git] / restconf / sal-rest-connector / src / main / java / org / opendaylight / restconf / RestconfApplication.java
1 /*
2  * Copyright (c) 2014 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 package org.opendaylight.restconf;
9
10 import com.google.common.collect.ImmutableSet;
11 import java.util.HashSet;
12 import java.util.Set;
13 import javax.ws.rs.core.Application;
14 import org.opendaylight.netconf.md.sal.rest.schema.SchemaExportContentYangBodyWriter;
15 import org.opendaylight.netconf.md.sal.rest.schema.SchemaExportContentYinBodyWriter;
16 import org.opendaylight.netconf.sal.rest.impl.JsonNormalizedNodeBodyReader;
17 import org.opendaylight.netconf.sal.rest.impl.NormalizedNodeJsonBodyWriter;
18 import org.opendaylight.netconf.sal.rest.impl.NormalizedNodeXmlBodyWriter;
19 import org.opendaylight.netconf.sal.rest.impl.XmlNormalizedNodeBodyReader;
20 import org.opendaylight.restconf.common.wrapper.services.Draft11ServicesWrapperImpl;
21
22 public class RestconfApplication extends Application {
23
24     @Override
25     public Set<Class<?>> getClasses() {
26         return ImmutableSet.<Class<?>> builder().add(NormalizedNodeJsonBodyWriter.class)
27                 .add(NormalizedNodeXmlBodyWriter.class).add(JsonNormalizedNodeBodyReader.class)
28                 .add(XmlNormalizedNodeBodyReader.class).add(SchemaExportContentYinBodyWriter.class)
29                 .add(SchemaExportContentYangBodyWriter.class)
30                 .build();
31     }
32
33     @Override
34     public Set<Object> getSingletons() {
35         final Set<Object> singletons = new HashSet<>();
36         singletons.add(Draft11ServicesWrapperImpl.getInstance());
37         return singletons;
38     }
39 }