blob: e3dafec52286e69f527e34edc78abd81668c4967 [file] [log] [blame]
Ray Milkey30d3f8b2015-12-09 09:16:26 -08001/*
2 * Copyright 2015 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.olt.rest;
17
18import javax.ws.rs.DELETE;
19import javax.ws.rs.POST;
20import javax.ws.rs.Path;
21import javax.ws.rs.PathParam;
22import javax.ws.rs.Produces;
23import javax.ws.rs.core.MediaType;
24import javax.ws.rs.core.Response;
25
26import org.onlab.packet.VlanId;
27import org.onosproject.net.ConnectPoint;
28import org.onosproject.net.DeviceId;
29import org.onosproject.net.PortNumber;
30import org.onosproject.olt.AccessDeviceService;
31import org.onosproject.rest.AbstractWebResource;
32
33/**
34 * OLT REST APIs.
35 */
36
37@Path("oltapp")
38public class OltWebResource extends AbstractWebResource {
39
40 /**
41 * Provision a subscriber.
42 *
Jian Lidfba7392016-01-22 16:46:58 -080043 * @param device device id
44 * @param port port number
45 * @param vlan vlan id
Ray Milkey30d3f8b2015-12-09 09:16:26 -080046 * @return 200 OK
47 */
48 @POST
49 @Produces(MediaType.APPLICATION_JSON)
50 @Path("{device}/{port}/{vlan}")
51 public Response provisionSubscriber(
52 @PathParam("device")String device,
53 @PathParam("port")long port,
54 @PathParam("vlan")short vlan) {
55 AccessDeviceService service = get(AccessDeviceService.class);
56 DeviceId deviceId = DeviceId.deviceId(device);
57 PortNumber portNumber = PortNumber.portNumber(port);
58 VlanId vlanId = VlanId.vlanId(vlan);
59 ConnectPoint connectPoint = new ConnectPoint(deviceId, portNumber);
60 service.provisionSubscriber(connectPoint, vlanId);
61 return ok("").build();
62 }
63
64 /**
65 * Remove the provisioning for a subscriber.
Jian Lidfba7392016-01-22 16:46:58 -080066 *
67 * @param device device id
68 * @param port port number
69 * @return 200 OK
Ray Milkey30d3f8b2015-12-09 09:16:26 -080070 */
71 @DELETE
72 @Produces(MediaType.APPLICATION_JSON)
73 @Path("{device}/{port}")
74 public Response removeSubscriber(
75 @PathParam("device")String device,
76 @PathParam("port")long port) {
77 AccessDeviceService service = get(AccessDeviceService.class);
78 DeviceId deviceId = DeviceId.deviceId(device);
79 PortNumber portNumber = PortNumber.portNumber(port);
80 ConnectPoint connectPoint = new ConnectPoint(deviceId, portNumber);
81 service.removeSubscriber(connectPoint);
82 return ok("").build();
83 }
84}