blob: 47162dbbcbc71d951128c532ffcac1ccf7f7c64d [file] [log] [blame]
Hyunsun Moon7ad92202016-04-20 10:36:02 -07001/*
2 * Copyright 2016-present Open Networking Laboratory
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.xosclient.api;
17
18import java.util.Set;
19
20/**
21 * Service for interacting with XOS VTN service and service dependency.
22 */
23public interface VtnServiceApi {
24
Hyunsun Moon91ba41a2016-06-10 16:52:39 -070025 // TODO move network type to VtnNetwork later
26 enum NetworkType {
27 PRIVATE,
28 PUBLIC,
29 MANAGEMENT
30 }
31
32 enum ServiceType {
33 VSG,
34 OLT_AGENT,
35 MANAGEMENT,
36 DEFAULT
37 }
38
Hyunsun Moon7ad92202016-04-20 10:36:02 -070039 /**
40 * Returns all services list.
41 *
42 * @return service list
43 */
Hyunsun Moon4c396632016-05-13 04:17:53 -070044 Set<VtnServiceId> services();
45
46 /**
47 * Returns VTN service.
48 *
49 * @param serviceId service id
50 * @return vtn service
51 */
52 VtnService service(VtnServiceId serviceId);
Hyunsun Moon7ad92202016-04-20 10:36:02 -070053
54 /**
55 * Returns dependent tenant services of a given provider service.
56 *
Hyunsun Moon4c396632016-05-13 04:17:53 -070057 * @param pServiceId vtn service id
58 * @return set of service ids
Hyunsun Moon7ad92202016-04-20 10:36:02 -070059 */
Hyunsun Moon4c396632016-05-13 04:17:53 -070060 Set<VtnServiceId> tenantServices(VtnServiceId pServiceId);
Hyunsun Moon7ad92202016-04-20 10:36:02 -070061
62 /**
63 * Returns dependent provider services of a given tenant service.
64 *
Hyunsun Moon4c396632016-05-13 04:17:53 -070065 * @param tServiceId vtn service id
66 * @return set of service ids
Hyunsun Moon7ad92202016-04-20 10:36:02 -070067 */
Hyunsun Moon4c396632016-05-13 04:17:53 -070068 Set<VtnServiceId> providerServices(VtnServiceId tServiceId);
Hyunsun Moone0f3e282016-05-13 18:58:35 -070069
70 /**
71 * Returns VTN service from OpenStack.
72 *
73 * @param serviceId service id
74 * @param osAccess openstack access
75 * @return vtn service
76 */
77 // TODO remove this when XOS provides service information
78 VtnService service(VtnServiceId serviceId, OpenStackAccess osAccess);
Hyunsun Moon7ad92202016-04-20 10:36:02 -070079}