af7895c86abcc00b6bb7159ec44d206c903404cd
[yangtools.git] / yang / yang-data-api / src / main / java / org / opendaylight / yangtools / yang / data / api / CollectionPathArguments.java
1 /*
2  * Copyright (c) 2015 Cisco Systems, Inc. and others. All rights reserved.
3  * This program and the accompanying materials are made available under the
4  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
5  * and is available at http://www.eclipse.org/legal/epl-v10.html
6  */
7 package org.opendaylight.yangtools.yang.data.api;
8
9 import java.util.Collection;
10 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgument;
11
12 /**
13  * This class provides backwards compatibility with the previous switch to
14  * Collections.
15  *
16  * @deprecated Remove before Lithium ships
17  */
18 @Deprecated
19 abstract class CollectionPathArguments extends IterablePathArguments {
20     @Override
21     public abstract Collection<PathArgument> getPathArguments();
22     @Override
23     public abstract Collection<PathArgument> getReversePathArguments();
24 }