blob: 8dcc3e9713fc60e4f3f36672370c925c857d6bfc [file] [log] [blame]
Madan Jampani619453b2015-07-22 23:47:09 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
Madan Jampani619453b2015-07-22 23:47:09 -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 */
Madan Jampanif1b8e172015-03-23 11:42:02 -070016package org.onosproject.store.service;
17
Madan Jampani538be742016-02-10 14:55:38 -080018import org.onosproject.store.primitives.DistributedPrimitiveBuilder;
Madan Jampanif1b8e172015-03-23 11:42:02 -070019
20/**
Madan Jampanidfde6ba2016-01-13 21:36:09 -080021 * Builder for {@link ConsistentMap} instances.
Madan Jampanif1b8e172015-03-23 11:42:02 -070022 *
23 * @param <K> type for map key
24 * @param <V> type for map value
25 */
Madan Jampani538be742016-02-10 14:55:38 -080026public abstract class ConsistentMapBuilder<K, V>
27 extends DistributedPrimitiveBuilder<ConsistentMapBuilder<K, V>, ConsistentMap<K, V>> {
28
29 private boolean purgeOnUninstall = false;
30
31 public ConsistentMapBuilder() {
32 super(DistributedPrimitive.Type.CONSISTENT_MAP);
33 }
Madan Jampanif1b8e172015-03-23 11:42:02 -070034
35 /**
Madan Jampani538be742016-02-10 14:55:38 -080036 * Clears map contents when the owning application is uninstalled.
Madan Jampanif1b8e172015-03-23 11:42:02 -070037 *
Thomas Vachuska708d3032016-02-18 11:11:46 -080038 * @return this builder
Madan Jampanif1b8e172015-03-23 11:42:02 -070039 */
Madan Jampani538be742016-02-10 14:55:38 -080040 public ConsistentMapBuilder<K, V> withPurgeOnUninstall() {
41 purgeOnUninstall = true;
42 return this;
43 }
Madan Jampanif1b8e172015-03-23 11:42:02 -070044
45 /**
Madan Jampani538be742016-02-10 14:55:38 -080046 * Returns if map entries need to be cleared when owning application is uninstalled.
47 * @return {@code true} if yes; {@code false} otherwise.
Madan Jampanie8af1cc2015-06-23 14:23:31 -070048 */
Madan Jampani538be742016-02-10 14:55:38 -080049 public boolean purgeOnUninstall() {
50 return purgeOnUninstall;
51 }
Madan Jampanif1b8e172015-03-23 11:42:02 -070052
53 /**
54 * Builds an async consistent map based on the configuration options
55 * supplied to this builder.
56 *
57 * @return new async consistent map
58 * @throws java.lang.RuntimeException if a mandatory parameter is missing
59 */
Madan Jampani538be742016-02-10 14:55:38 -080060 public abstract AsyncConsistentMap<K, V> buildAsyncMap();
Sho SHIMIZU3310a342015-05-13 12:14:05 -070061}