/* * 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 java.util.List; import javax.inject.Inject; import javax.inject.Singleton; import org.opendaylight.mdsal.dom.api.DOMActionService; import org.opendaylight.mdsal.dom.api.DOMDataBroker; import org.opendaylight.mdsal.dom.api.DOMMountPointService; import org.opendaylight.mdsal.dom.api.DOMNotificationService; import org.opendaylight.mdsal.dom.api.DOMRpcService; import org.opendaylight.mdsal.dom.api.DOMSchemaService; import org.opendaylight.restconf.nb.rfc8040.databind.DatabindProvider; import org.opendaylight.restconf.nb.rfc8040.rests.services.api.RestconfStreamsSubscriptionService; import org.opendaylight.restconf.nb.rfc8040.rests.services.impl.RestconfDataServiceImpl; import org.opendaylight.restconf.nb.rfc8040.rests.services.impl.RestconfImpl; import org.opendaylight.restconf.nb.rfc8040.rests.services.impl.RestconfInvokeOperationsServiceImpl; import org.opendaylight.restconf.nb.rfc8040.rests.services.impl.RestconfOperationsServiceImpl; import org.opendaylight.restconf.nb.rfc8040.rests.services.impl.RestconfSchemaServiceImpl; import org.opendaylight.restconf.nb.rfc8040.rests.services.impl.RestconfStreamsSubscriptionServiceImpl; import org.opendaylight.restconf.nb.rfc8040.streams.StreamsConfiguration; @Singleton public class RestconfApplication extends AbstractRestconfApplication { private RestconfApplication(final DatabindProvider databindProvider, final DOMMountPointService mountPointService, final RestconfStreamsSubscriptionService streamSubscription, final DOMDataBroker dataBroker, final DOMRpcService rpcService, final DOMActionService actionService, final DOMNotificationService notificationService, final DOMSchemaService domSchemaService, final StreamsConfiguration configuration) { super(databindProvider, List.of( streamSubscription, new RestconfDataServiceImpl(databindProvider, dataBroker, mountPointService, streamSubscription, actionService, configuration), new RestconfInvokeOperationsServiceImpl(databindProvider, rpcService, mountPointService, configuration), new RestconfOperationsServiceImpl(databindProvider, mountPointService), new RestconfSchemaServiceImpl(domSchemaService, mountPointService), new RestconfImpl(databindProvider))); } @Inject public RestconfApplication(final DatabindProvider databindProvider, final DOMMountPointService mountPointService, final DOMDataBroker dataBroker, final DOMRpcService rpcService, final DOMActionService actionService, final DOMNotificationService notificationService, final DOMSchemaService domSchemaService, final StreamsConfiguration configuration) { this(databindProvider, mountPointService, new RestconfStreamsSubscriptionServiceImpl(dataBroker, notificationService, databindProvider, configuration), dataBroker, rpcService, actionService, notificationService, domSchemaService, configuration); } }