blob: c687a959443fef9c021b73c71e1d87f4b4a22a8a [file] [log] [blame]
Srikanth Vavilapalli56db94f2015-01-22 22:30:17 -08001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
Srikanth Vavilapalli56db94f2015-01-22 22:30:17 -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 */
16package org.onosproject.net.group;
17
Srikanth Vavilapalli0599d512015-01-30 12:57:56 -080018/**
19 * Representation of generalized Key that would be used to store
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -070020 * groups in < Key, Value > store. This key uses a generic
21 * byte array so that applications can associate their groups with
22 * any of their data by translating it into a byte array.
Srikanth Vavilapalli56db94f2015-01-22 22:30:17 -080023 */
24public interface GroupKey {
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -070025 /**
26 * Returns the byte representation of key.
27 *
28 * @return byte array
29 */
Sho SHIMIZU3310a342015-05-13 12:14:05 -070030 byte[] key();
Srikanth Vavilapalli56db94f2015-01-22 22:30:17 -080031}