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