X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-binding-api%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fmd%2Fsal%2Fbinding%2Fapi%2FActionService.java;fp=opendaylight%2Fmd-sal%2Fsal-binding-api%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fmd%2Fsal%2Fbinding%2Fapi%2FActionService.java;h=a505de4d9c4f9c75006a292527ca741db7246961;hp=0000000000000000000000000000000000000000;hb=4f1acb8169d38b8e2af51fadbeb7e86e8d7eec58;hpb=22d4abb718884354f34b5bf021ef958876a78218 diff --git a/opendaylight/md-sal/sal-binding-api/src/main/java/org/opendaylight/controller/md/sal/binding/api/ActionService.java b/opendaylight/md-sal/sal-binding-api/src/main/java/org/opendaylight/controller/md/sal/binding/api/ActionService.java new file mode 100644 index 0000000000..a505de4d9c --- /dev/null +++ b/opendaylight/md-sal/sal-binding-api/src/main/java/org/opendaylight/controller/md/sal/binding/api/ActionService.java @@ -0,0 +1,21 @@ +/* + * Copyright (c) 2018 Pantheon Technologies, s.r.o. 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.controller.md.sal.binding.api; + +import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; + +/** + * Bridge to action invocation. + * + * @deprecated Use {@link org.opendaylight.mdsal.binding.api.ActionService} instead + */ +@Deprecated +@SuppressFBWarnings(value = "NM_SAME_SIMPLE_NAME_AS_INTERFACE", justification = "Migration") +public interface ActionService extends BindingService, org.opendaylight.mdsal.binding.api.ActionService { + +}