blob: 84536ac625d375b3e1f25bca396f854cf1091153 [file] [log] [blame]
Ray Milkey30d3f8b2015-12-09 09:16:26 -08001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2016-present Open Networking Laboratory
Ray Milkey30d3f8b2015-12-09 09:16:26 -08003 *
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
Jian Lic2a542b2016-05-10 11:48:19 -070069 * @return 204 NO CONTENT
Ray Milkey30d3f8b2015-12-09 09:16:26 -080070 */
71 @DELETE
Ray Milkey30d3f8b2015-12-09 09:16:26 -080072 @Path("{device}/{port}")
73 public Response removeSubscriber(
74 @PathParam("device")String device,
75 @PathParam("port")long port) {
76 AccessDeviceService service = get(AccessDeviceService.class);
77 DeviceId deviceId = DeviceId.deviceId(device);
78 PortNumber portNumber = PortNumber.portNumber(port);
79 ConnectPoint connectPoint = new ConnectPoint(deviceId, portNumber);
80 service.removeSubscriber(connectPoint);
Jian Lic2a542b2016-05-10 11:48:19 -070081 return Response.noContent().build();
Ray Milkey30d3f8b2015-12-09 09:16:26 -080082 }
83}