blob: f5dafc939aea97aacfba498fb0bc2d4ef8d54b40 [file] [log] [blame]
Sho SHIMIZUdeb04422016-05-06 16:10:46 -07001/*
2 * Copyright 2016-present 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.store.resource.impl;
17
18import com.google.common.collect.ImmutableList;
19import org.onosproject.net.resource.ContinuousResource;
20import org.onosproject.net.resource.ResourceAllocation;
21
22// internal use only
23final class ContinuousResourceAllocation {
24 private final ContinuousResource original;
25 private final ImmutableList<ResourceAllocation> allocations;
26
27 ContinuousResourceAllocation(ContinuousResource original,
28 ImmutableList<ResourceAllocation> allocations) {
29 this.original = original;
30 this.allocations = allocations;
31 }
32
33 ContinuousResource original() {
34 return original;
35 }
36
37 ImmutableList<ResourceAllocation> allocations() {
38 return allocations;
39 }
40}