blob: be4a94b12b40ec92ab115074368c123b7c2940bc [file] [log] [blame]
/*
* Copyright 2015-present Open Networking Laboratory
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.opencord.cordvtn.rest;
import org.onosproject.rest.AbstractWebResource;
import org.opencord.cordvtn.api.dependency.Dependency.Type;
import org.opencord.cordvtn.api.dependency.DependencyService;
import org.opencord.cordvtn.api.net.NetworkId;
import javax.ws.rs.DELETE;
import javax.ws.rs.POST;
import javax.ws.rs.Path;
import javax.ws.rs.PathParam;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.Response;
import java.util.Objects;
import static org.opencord.cordvtn.api.dependency.Dependency.Type.BIDIRECTIONAL;
import static org.opencord.cordvtn.api.dependency.Dependency.Type.UNIDIRECTIONAL;
/**
* Manages service dependency.
*/
@Deprecated
@Path("service-dependency")
public class ServiceDependencyWebResource extends AbstractWebResource {
private final DependencyService service = get(DependencyService.class);
private static final String BIDIRECTION = "b";
/**
* Creates service dependencies with unidirectional access between the services.
*
* @param tServiceId tenant service id
* @param pServiceId provider service id
* @return 200 OK
*/
@POST
@Path("{tenantServiceId}/{providerServiceId}")
@Produces(MediaType.APPLICATION_JSON)
public Response createServiceDependency(@PathParam("tenantServiceId") String tServiceId,
@PathParam("providerServiceId") String pServiceId) {
service.createDependency(NetworkId.of(tServiceId),
NetworkId.of(pServiceId),
UNIDIRECTIONAL);
return Response.status(Response.Status.OK).build();
}
/**
* Creates service dependencies with an access type extension between the services.
*
* @param tServiceId tenant service id
* @param pServiceId provider service id
* @param direction b for bidirectional access, otherwise unidirectional access
* @return 200 OK
*/
@POST
@Path("{tenantServiceId}/{providerServiceId}/{direction}")
@Produces(MediaType.APPLICATION_JSON)
public Response createServiceDependency(@PathParam("tenantServiceId") String tServiceId,
@PathParam("providerServiceId") String pServiceId,
@PathParam("direction") String direction) {
Type type = Objects.equals(direction, BIDIRECTION) ? BIDIRECTIONAL : UNIDIRECTIONAL;
service.createDependency(NetworkId.of(tServiceId),
NetworkId.of(pServiceId),
type);
return Response.status(Response.Status.OK).build();
}
/**
* Removes service dependencies.
*
* @param tServiceId tenant service id
* @param pServiceId provider service id
* @return 204 NO CONTENT
*/
@DELETE
@Path("{tenantServiceId}/{providerServiceId}")
public Response removeServiceDependency(@PathParam("tenantServiceId") String tServiceId,
@PathParam("providerServiceId") String pServiceId) {
service.removeDependency(NetworkId.of(tServiceId), NetworkId.of(pServiceId));
return Response.noContent().build();
}
}