blob: bb343da5a333675ad3b06a731f0e6e5d0b6dbb61 [file] [log] [blame]
Aaron Kruglikoved88ff62016-08-01 16:02:09 -07001/*
2 * Copyright 2016-present Open Networking Laboratory
3 *
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 */
16
17package org.onosproject.store.service;
18
19import org.onosproject.store.primitives.DistributedPrimitiveBuilder;
20
21/**
22 * Builder for {@link ConsistentTreeMap}.
23 */
24public abstract class ConsistentTreeMapBuilder<V>
25 extends DistributedPrimitiveBuilder<ConsistentTreeMapBuilder<V>, ConsistentTreeMap<V>> {
26
27 private boolean purgeOnUninstall = false;
28
29 public ConsistentTreeMapBuilder() {
30 super(DistributedPrimitive.Type.CONSISTENT_TREEMAP);
31 }
32
33 /**
34 * Clears map contents when the owning application is uninstalled.
35 *
36 * @return this builder
37 */
38 public ConsistentTreeMapBuilder<V> withPurgeOnUninstall() {
39 purgeOnUninstall = true;
40 return this;
41 }
42
43 /**
44 * Return if map entries need to be cleared when owning application is uninstalled.
45 *
46 * @return true if items are to be cleared on uninstall
47 */
48 public boolean purgeOnUninstall() {
49 return purgeOnUninstall;
50 }
51
52 /**
53 * Builds the distributed tree map based on the configuration options supplied
54 * to this builder.
55 *
56 * @return new distributed tree map
57 * @throw java.lang.RuntimeException if a mandatory parameter is missing
58 */
59 public abstract AsyncConsistentTreeMap<V> buildTreeMap();
60
61}