/* * 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.rest; import com.google.common.collect.ImmutableSet; import java.util.HashSet; import java.util.Set; import javax.ws.rs.core.Application; import org.opendaylight.netconf.md.sal.rest.schema.SchemaExportContentYangBodyWriter; import org.opendaylight.netconf.md.sal.rest.schema.SchemaExportContentYinBodyWriter; import org.opendaylight.netconf.sal.rest.impl.NormalizedNodeJsonBodyWriter; import org.opendaylight.netconf.sal.rest.impl.NormalizedNodeXmlBodyWriter; import org.opendaylight.restconf.rest.impl.services.Draft11ServicesWrapperImpl; public class RestconfApplication extends Application { @Override public Set> getClasses() { return ImmutableSet.> builder().add(NormalizedNodeJsonBodyWriter.class) .add(NormalizedNodeXmlBodyWriter.class).add(SchemaExportContentYinBodyWriter.class) .add(SchemaExportContentYangBodyWriter.class) .build(); } @Override public Set getSingletons() { final Set singletons = new HashSet<>(); singletons.add(Draft11ServicesWrapperImpl.getInstance()); return singletons; } }