blob: 2bc0318f6c29ad4352fa5618133750cc63f252b2 [file] [log] [blame]
Jian Libc4dd932019-07-10 10:06:58 +09001/*
2 * Copyright 2019-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.k8snetworking.api;
17
18import io.fabric8.kubernetes.api.model.Namespace;
19import org.onosproject.store.Store;
20
21import java.util.Set;
22
23/**
24 * Manages inventory of kubernetes namespace; not intended for direct use.
25 */
26public interface K8sNamespaceStore
27 extends Store<K8sNamespaceEvent, K8sNamespaceStoreDelegate> {
28
29 /**
30 * Creates the new kubernetes namespace.
31 *
32 * @param namespace kubernetes namespace
33 */
34 void createNamespace(Namespace namespace);
35
36 /**
37 * Updates the kubernetes namespace.
38 *
39 * @param namespace kubernetes namespace
40 */
41 void updateNamespace(Namespace namespace);
42
43 /**
44 * Removes the kubernetes namespace with the given namespace UID.
45 *
46 * @param uid kubernetes namespace UID
47 * @return removed kubernetes namespace; null if failed
48 */
49 Namespace removeNamespace(String uid);
50
51 /**
52 * Returns the kubernetes namespace with the given namespace UID.
53 *
54 * @param uid kubernetes namespace UID
55 * @return kubernetes namespace; null if not found
56 */
57 Namespace namespace(String uid);
58
59 /**
60 * Returns all kubernetes namespaces.
61 *
62 * @return set of kubernetes namespaces
63 */
64 Set<Namespace> namespaces();
65
66 /**
67 * Removes all kubernetes namespaces.
68 */
69 void clear();
70}