blob: 9bcb5c96cf5446cb63b30130de5f54821b91774e [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.Endpoints;
19import org.onosproject.store.Store;
20
21import java.util.Set;
22
23/**
24 * Manages inventory of kubernetes endpoints; not intended for direct use.
25 */
26public interface K8sEndpointsStore
27 extends Store<K8sEndpointsEvent, K8sEndpointsStoreDelegate> {
28
29 /**
30 * Creates the new kubernetes endpoints.
31 *
32 * @param endpoints kubernetes endpoints
33 */
34 void createEndpoints(Endpoints endpoints);
35
36 /**
37 * Updates the kubernetes endpoints.
38 *
39 * @param endpoints kubernetes endpoints
40 */
41 void updateEndpoints(Endpoints endpoints);
42
43 /**
44 * Removes the kubernetes endpoints with the given endpoints UID.
45 *
46 * @param uid kubernetes endpoints UID
47 * @return removed kubernetes endpoints; null if failed
48 */
49 Endpoints removeEndpoints(String uid);
50
51 /**
52 * Returns the kubernetes endpoints with the given endpoints UID.
53 *
54 * @param uid kubernetes endpoints UID
55 * @return kubernetes endpoints; null if not found
56 */
57 Endpoints endpoints(String uid);
58
59 /**
60 * Returns all kubernetes endpoints.
61 *
62 * @return set of kubernetes endpoints
63 */
64 Set<Endpoints> endpointses();
65
66 /**
67 * Removes all kubernetes endpoints.
68 */
69 void clear();
70}