blob: 49f1f709c07eacf02ec9e7174a0f4eed3e1810e1 [file] [log] [blame]
Aaron Kruglikov92511f22015-10-12 14:39:04 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
Aaron Kruglikov92511f22015-10-12 14:39:04 -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.persistence;
18
19import org.onosproject.store.service.Serializer;
20
21import java.util.Set;
22
23/**
24 * The default interface for the persistent set builder for use with mapDB.
25 */
26public interface PersistentSetBuilder<E> {
27
28 /**
29 * Sets the name of this set.
30 * @param name the string name of this set
31 * @return a persistent set builder with the name option now set
32 */
33 PersistentSetBuilder<E> withName(String name);
34
35 /**
36 * Sets the serializer to be used to serialize this set, this is a required parameter.
37 * @param serializer the serializer to be used
38 * @return a persistent set builder with the serializer set
39 */
40 PersistentSetBuilder<E> withSerializer(Serializer serializer);
41
42 /**
43 * Validates the set settings and then builds this map in the database. Throws an exception if invalid settings
44 * are found.
45 * @return The set that was created
46 */
47 Set<E> build();
48}