Fix checkstyle violations in sal-binding-broker
[controller.git] / opendaylight / md-sal / sal-binding-config / src / main / java / org / opendaylight / controller / config / yang / md / sal / binding / impl / DummyNoopProvider.java
1 /*
2  * Copyright (c) 2015 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.controller.config.yang.md.sal.binding.impl;
9
10 import java.util.Collection;
11 import java.util.Collections;
12 import org.opendaylight.controller.sal.core.api.Broker.ProviderSession;
13 import org.opendaylight.controller.sal.core.api.Provider;
14
15 class DummyDOMProvider implements Provider {
16
17     @Override
18     @Deprecated
19     public Collection<ProviderFunctionality> getProviderFunctionality() {
20         return Collections.emptyList();
21     }
22
23     @Override
24     public void onSessionInitiated(ProviderSession session) {
25         // NOOP
26     }
27 }