blob: 2c6efd066b079ab8a2bd696202ebce01810dc25b [file] [log] [blame]
Jordan Halterman2c045992018-03-20 21:33:00 -07001/*
2 * Copyright 2018-present Open Networking Foundation
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 */
16package org.onosproject.store.service;
17
18import org.onosproject.store.primitives.DistributedPrimitiveOptions;
19
20/**
21 * Builder for distributed set.
22 *
23 * @param <E> type set elements.
24 */
25public abstract class DistributedSetOptions<O extends DistributedSetOptions<O, E>, E>
26 extends DistributedPrimitiveOptions<O> {
27
28 private boolean purgeOnUninstall = false;
29
30 public DistributedSetOptions() {
31 super(DistributedPrimitive.Type.SET);
32 }
33
34 /**
35 * Enables clearing set contents when the owning application is uninstalled.
36 *
37 * @return this builder
38 */
39 public O withPurgeOnUninstall() {
40 purgeOnUninstall = true;
41 return (O) this;
42 }
43
44 /**
45 * Returns if set contents need to be cleared when owning application is uninstalled.
46 * @return {@code true} if yes; {@code false} otherwise.
47 */
48 public boolean purgeOnUninstall() {
49 return purgeOnUninstall;
50 }
51}