blob: 62c302313fa5f81c99fcc683fc33c70cf8bf140d [file] [log] [blame]
Sho SHIMIZUabd849c2015-07-14 09:14:12 -07001/*
2 * Copyright 2015 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 */
16package org.onosproject.net.newresource;
17
18import com.google.common.annotations.Beta;
19import org.onosproject.net.LinkKey;
20
21/**
22 * Represents allocation of resource bound to link.
23 *
24 * @param <T> type of the resource
25 */
26@Beta
27public final class LinkResourceAllocation<T> extends AbstractResourceAllocation<LinkKey, T> {
28
29 /**
30 * Creates a new allocation of resource bound to the specified device and consumed by the specified user.
31 *
32 * @param link device identifier which this resource belongs to
33 * @param resource resource of the device
34 * @param consumer consumer of this resource
35 */
36 public LinkResourceAllocation(LinkKey link, T resource, ResourceConsumer consumer) {
37 super(link, resource, consumer);
38 }
39}