blob: 102520213925f719859bac33dc72a526897e6b09 [file] [log] [blame]
Jian Li1cf51882019-02-26 14:41:20 +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.extensions.Ingress;
19import org.onosproject.store.Store;
20
21import java.util.Set;
22
23/**
24 * Manages inventory of kubernetes ingresses; not intended for direct use.
25 */
26public interface K8sIngressStore
27 extends Store<K8sIngressEvent, K8sIngressStoreDelegate> {
28
29 /**
30 * Creates the new kubernetes ingress.
31 *
32 * @param ingress kubernetes ingress
33 */
34 void createIngress(Ingress ingress);
35
36 /**
37 * Updates the kubernetes ingress.
38 *
39 * @param ingress kubernetes ingress
40 */
41 void updateIngress(Ingress ingress);
42
43 /**
44 * Removes the kubernetes ingress with the given ingress UID.
45 *
46 * @param uid kubernetes ingress UID.
47 * @return removed kubernetes ingress; null if failed
48 */
49 Ingress removeIngress(String uid);
50
51 /**
52 * Returns the kubernetes ingress with the given ingress UID.
53 *
54 * @param uid kubernetes ingress UID
55 * @return kubernetes ingress; null if not found
56 */
57 Ingress ingress(String uid);
58
59 /**
60 * Returns all kubernetes ingresses.
61 *
62 * @return set of kubernetes ingresses
63 */
64 Set<Ingress> ingresses();
65
66 /**
67 * Removes all kubernetes ingresses.
68 */
69 void clear();
70}