blob: 7583213424c808c97a115ff5dc19fd5fa322f8d3 [file] [log] [blame]
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07001/*
Ray Milkey34c95902015-04-15 09:47:53 -07002 * Copyright 2014-2015 Open Networking Laboratory
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07003 *
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 */
Brian O'Connorabafb502014-12-02 22:26:20 -080016package org.onosproject.net.resource;
Toshio Koided1865a42014-10-23 12:44:55 -070017
Sho SHIMIZU67f94862015-07-02 17:08:40 -070018import com.google.common.annotations.Beta;
19
Toshio Koidebce74252014-10-30 10:58:08 -070020/**
21 * Represents types for link resources.
22 */
Sho SHIMIZU67f94862015-07-02 17:08:40 -070023@Beta
Toshio Koided1865a42014-10-23 12:44:55 -070024public enum ResourceType {
Toshio Koidebce74252014-10-30 10:58:08 -070025 /**
26 * Lambda resource type.
27 */
Toshio Koided1865a42014-10-23 12:44:55 -070028 LAMBDA,
Toshio Koidebce74252014-10-30 10:58:08 -070029
30 /**
31 * Bandwidth resource type.
32 */
Toshio Koided1865a42014-10-23 12:44:55 -070033 BANDWIDTH,
Michele Santuari4b6019e2014-12-19 11:31:45 +010034
35 /**
36 * MPLS label resource type.
37 */
38 MPLS_LABEL,
Toshio Koided1865a42014-10-23 12:44:55 -070039}