blob: 94843fc8576937a5756eee2b3ff98386ebdb073a [file] [log] [blame]
Madan Jampani25461112015-02-17 14:17:29 -08001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2015-present Open Networking Foundation
Madan Jampani25461112015-02-17 14:17: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 */
Madan Jampani393e0f02015-02-12 07:35:39 +053016package org.onosproject.store.service;
17
18/**
19 * Storage service.
20 * <p>
Madan Jampanicab114c2015-07-23 00:14:19 -070021 * This service provides builders for various distributed primitives.
Madan Jampani393e0f02015-02-12 07:35:39 +053022 * <p>
Madan Jampanicab114c2015-07-23 00:14:19 -070023 * It is expected that services and applications will leverage the primitives indirectly provided by
24 * this service for their distributed state management and coordination.
Madan Jampani393e0f02015-02-12 07:35:39 +053025 */
Jordan Halterman980a8c12017-09-22 18:01:19 -070026public interface StorageService extends PrimitiveService {
Madan Jampanibff6d8f2015-03-31 16:53:47 -070027}