blob: 2ab398b49e70164c2f6f55da9f726f200e1117f0 [file] [log] [blame]
Sho SHIMIZUe3cc0b92014-11-20 16:18:29 -08001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2014-present Open Networking Laboratory
Sho SHIMIZUe3cc0b92014-11-20 16:18:29 -08003 *
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.core;
Sho SHIMIZUe3cc0b92014-11-20 16:18:29 -080017
18/**
19 * Group identifier.
20 */
Jian Lib6d998e2016-02-29 11:41:18 -080021// TODO: require refactor to extend from Identifier base class
Sho SHIMIZUe3cc0b92014-11-20 16:18:29 -080022public interface GroupId {
23
24 /**
Saurav Das100e3b82015-04-30 11:12:10 -070025 * Returns a group ID as an integer value.
Sho SHIMIZUe3cc0b92014-11-20 16:18:29 -080026 * The method is not intended for use by application developers.
27 * Return data type may change in the future release.
28 *
Saurav Das100e3b82015-04-30 11:12:10 -070029 * @return a group ID as integer value
Sho SHIMIZUe3cc0b92014-11-20 16:18:29 -080030 */
31 int id();
32}