Committed by
Thomas Vachuska
Remove ResourceId deprecated in Emu
Change-Id: I0b0be22523b3d9f3ded0339d20718a97450f7748
Showing
2 changed files
with
1 additions
and
27 deletions
| 1 | -/* | ||
| 2 | - * Copyright 2014 Open Networking Laboratory | ||
| 3 | - * | ||
| 4 | - * Licensed under the Apache License, Version 2.0 (the "License"); | ||
| 5 | - * you may not use this file except in compliance with the License. | ||
| 6 | - * You may obtain a copy of the License at | ||
| 7 | - * | ||
| 8 | - * http://www.apache.org/licenses/LICENSE-2.0 | ||
| 9 | - * | ||
| 10 | - * Unless required by applicable law or agreed to in writing, software | ||
| 11 | - * distributed under the License is distributed on an "AS IS" BASIS, | ||
| 12 | - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| 13 | - * See the License for the specific language governing permissions and | ||
| 14 | - * limitations under the License. | ||
| 15 | - */ | ||
| 16 | -package org.onosproject.net.resource; | ||
| 17 | - | ||
| 18 | -import com.google.common.annotations.Beta; | ||
| 19 | - | ||
| 20 | -/** | ||
| 21 | - * Resource identifier. | ||
| 22 | - */ | ||
| 23 | -@Beta | ||
| 24 | -public interface ResourceId { | ||
| 25 | -} |
| ... | @@ -17,13 +17,12 @@ package org.onosproject.incubator.net.resource.label; | ... | @@ -17,13 +17,12 @@ package org.onosproject.incubator.net.resource.label; |
| 17 | 17 | ||
| 18 | import com.google.common.annotations.Beta; | 18 | import com.google.common.annotations.Beta; |
| 19 | import org.onlab.util.Identifier; | 19 | import org.onlab.util.Identifier; |
| 20 | -import org.onosproject.net.resource.ResourceId; | ||
| 21 | 20 | ||
| 22 | /** | 21 | /** |
| 23 | * Representation of a label. | 22 | * Representation of a label. |
| 24 | */ | 23 | */ |
| 25 | @Beta | 24 | @Beta |
| 26 | -public final class LabelResourceId extends Identifier<Long> implements ResourceId { | 25 | +public final class LabelResourceId extends Identifier<Long> { |
| 27 | 26 | ||
| 28 | /** | 27 | /** |
| 29 | * Creates a new label identifier. | 28 | * Creates a new label identifier. | ... | ... |
-
Please register or login to post a comment