blob: a1e5a987dbf81aa90367a9490105d905985c1240 [file] [log] [blame]
Sho SHIMIZU22fb2832016-05-06 11:44:03 -07001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2016-present Open Networking Foundation
Sho SHIMIZU22fb2832016-05-06 11:44:03 -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 */
16package org.onosproject.store.resource.impl;
17
18final class MapNames {
19 static final String DISCRETE_CONSUMER_MAP = "onos-discrete-consumers";
20 static final String DISCRETE_CHILD_MAP = "onos-resource-discrete-children";
21 static final String CONTINUOUS_CONSUMER_MAP = "onos-continuous-consumers";
22 static final String CONTINUOUS_CHILD_MAP = "onos-resource-continuous-children";
23
Frank Wangd8ab0962017-08-11 11:09:30 +080024 // prohibit construction
Sho SHIMIZU22fb2832016-05-06 11:44:03 -070025 private MapNames() {}
26}