blob: 1420e4b0925040a9d4bef649128432c70d827a67 [file] [log] [blame]
Madan Jampani08706ce2015-04-01 14:49:28 -07001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2015-present Open Networking Foundation
Madan Jampani08706ce2015-04-01 14:49:28 -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.service;
17
Madan Jampani538be742016-02-10 14:55:38 -080018import org.onosproject.store.primitives.DistributedPrimitiveBuilder;
Madan Jampanie8af1cc2015-06-23 14:23:31 -070019
Madan Jampani08706ce2015-04-01 14:49:28 -070020/**
21 * Builder for distributed set.
22 *
23 * @param <E> type set elements.
24 */
Jordan Halterman2c045992018-03-20 21:33:00 -070025public abstract class DistributedSetBuilder<E>
26 extends DistributedSetOptions<DistributedSetBuilder<E>, E>
27 implements DistributedPrimitiveBuilder<AsyncDistributedSet<E>> {
Sho SHIMIZU3310a342015-05-13 12:14:05 -070028}