b0dad416b928fc250e26941eecad61fff35621f3
[netconf.git] / restconf / restconf-nb-rfc8040 / src / main / java / org / opendaylight / restconf / nb / rfc8040 / services / simple / api / BaseServicesWrapper.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 package org.opendaylight.restconf.nb.rfc8040.services.simple.api;
9
10 import org.opendaylight.restconf.nb.rfc8040.rests.services.api.RestconfOperationsService;
11 import org.opendaylight.restconf.nb.rfc8040.rests.services.api.RestconfSchemaService;
12 import org.opendaylight.restconf.nb.rfc8040.rests.services.api.RestconfService;
13
14 /**
15  * Wrapper for all base services.
16  * <ul>
17  *   <li>{@link RestconfOperationsService}</li>
18  *   <li>{@link RestconfSchemaService}</li>
19  * </ul>
20  */
21 public interface BaseServicesWrapper extends RestconfOperationsService, RestconfSchemaService, RestconfService {
22
23 }