/* * Copyright (c) 2014 Cisco Systems, Inc. and others. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ package org.opendaylight.restconf.nb.rfc8040; import com.google.common.collect.ImmutableSet; import java.util.HashSet; import java.util.Set; import javax.ws.rs.core.Application; import org.opendaylight.restconf.nb.rfc8040.jersey.providers.JsonNormalizedNodeBodyReader; import org.opendaylight.restconf.nb.rfc8040.jersey.providers.NormalizedNodeJsonBodyWriter; import org.opendaylight.restconf.nb.rfc8040.jersey.providers.NormalizedNodeXmlBodyWriter; import org.opendaylight.restconf.nb.rfc8040.jersey.providers.XmlNormalizedNodeBodyReader; import org.opendaylight.restconf.nb.rfc8040.jersey.providers.patch.JsonToPatchBodyReader; import org.opendaylight.restconf.nb.rfc8040.jersey.providers.patch.PatchJsonBodyWriter; import org.opendaylight.restconf.nb.rfc8040.jersey.providers.patch.PatchXmlBodyWriter; import org.opendaylight.restconf.nb.rfc8040.jersey.providers.patch.XmlToPatchBodyReader; import org.opendaylight.restconf.nb.rfc8040.jersey.providers.schema.SchemaExportContentYangBodyWriter; import org.opendaylight.restconf.nb.rfc8040.jersey.providers.schema.SchemaExportContentYinBodyWriter; import org.opendaylight.restconf.nb.rfc8040.services.wrapper.ServicesWrapperImpl; public class RestconfApplication extends Application { @Override public Set> getClasses() { return ImmutableSet.>builder() .add(NormalizedNodeJsonBodyWriter.class).add(NormalizedNodeXmlBodyWriter.class) .add(JsonNormalizedNodeBodyReader.class).add(XmlNormalizedNodeBodyReader.class) .add(SchemaExportContentYinBodyWriter.class).add(SchemaExportContentYangBodyWriter.class) .add(JsonToPatchBodyReader.class).add(XmlToPatchBodyReader.class) .add(PatchJsonBodyWriter.class).add(PatchXmlBodyWriter.class) .build(); } @Override public Set getSingletons() { final Set singletons = new HashSet<>(); singletons.add(ServicesWrapperImpl.getInstance()); return singletons; } }