blob: 15f4606b74b086289cd37e381215e278cae68717 [file] [log] [blame]
Aaron Kruglikov61582a02016-09-06 13:18:58 -07001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2016 Open Networking Foundation
Aaron Kruglikov61582a02016-09-06 13:18:58 -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 */
16
17package org.onosproject.store.service;
18
19import org.onosproject.store.primitives.DistributedPrimitiveBuilder;
20
21/**
22 * A builder class for {@code AsyncConsistentMultimap}.
23 */
24public abstract class ConsistentMultimapBuilder<K, V>
25 extends DistributedPrimitiveBuilder<ConsistentMultimapBuilder<K, V>,
26 ConsistentMultimap<K, V>> {
27
28 private boolean purgeOnUninstall = false;
29
30 public ConsistentMultimapBuilder() {
31 super(DistributedPrimitive.Type.CONSISTENT_MULTIMAP);
32 }
33
34 /**
35 * Clears multimap contents when the owning application is uninstalled.
36 *
37 * @return this builder
38 */
39 public ConsistentMultimapBuilder<K, V> withPurgeOnUninstall() {
40 purgeOnUninstall = true;
41 return this;
42 }
43
44 /**
45 * Returns if multimap entries need to be cleared when owning application
46 * is uninstalled.
47 *
48 * @return true if items are to be cleared on uninstall
49 */
50 public boolean purgeOnUninstall() {
51 return purgeOnUninstall;
52 }
53
54 /**
55 * Builds the distributed multimap based on the configuration options
56 * supplied to this builder.
57 *
58 * @return new distributed multimap
59 * @throws java.lang.RuntimeException if a mandatory parameter is missing
60 */
61 public abstract AsyncConsistentMultimap<K, V> buildMultimap();
62}