Update MRI projects for Aluminium
[ovsdb.git] / hwvtepsouthbound / hwvtepsouthbound-impl / src / main / java / org / opendaylight / ovsdb / hwvtepsouthbound / transact / EmptyDependencyGetter.java
1 /*
2  * Copyright (c) 2020 Ericsson India Global Services Pvt Ltd. 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.ovsdb.hwvtepsouthbound.transact;
9
10 import java.util.Collections;
11 import java.util.List;
12 import org.opendaylight.yangtools.yang.binding.Identifiable;
13 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
14
15 public final class EmptyDependencyGetter extends UnMetDependencyGetter {
16
17     public static final EmptyDependencyGetter INSTANCE = new EmptyDependencyGetter();
18
19     private EmptyDependencyGetter() {
20     }
21
22     @Override
23     public List<InstanceIdentifier<?>> getLogicalSwitchDependencies(Identifiable data) {
24         return Collections.EMPTY_LIST;
25     }
26
27     @Override
28     public List<InstanceIdentifier<?>> getTerminationPointDependencies(Identifiable data) {
29         return Collections.EMPTY_LIST;
30     }
31 }