use of org.opennms.web.rest.v2.bsm.model.edge.ReductionKeyEdgeRequestDTO in project opennms by OpenNMS.
the class BusinessServiceRestService method update.
@PUT
@Path("{id}")
public Response update(@PathParam("id") final Long id, final BusinessServiceRequestDTO request) {
final BusinessService service = getManager().getBusinessServiceById(id);
service.setName(request.getName());
service.setAttributes(request.getAttributes());
service.setReduceFunction(transform(request.getReduceFunction()));
service.setReductionKeyEdges(Sets.newHashSet());
service.setIpServiceEdges(Sets.newHashSet());
service.setChildEdges(Sets.newHashSet());
request.getEdges().forEach(eachEdge -> eachEdge.accept(new EdgeRequestDTOVisitor() {
@Override
public void visit(IpServiceEdgeRequestDTO ipEdge) {
getManager().addIpServiceEdge(service, getManager().getIpServiceById(ipEdge.getIpServiceId()), transform(ipEdge.getMapFunction()), ipEdge.getWeight(), ipEdge.getFriendlyName());
}
@Override
public void visit(ChildEdgeRequestDTO childEdge) {
getManager().addChildEdge(service, getManager().getBusinessServiceById(childEdge.getChildId()), transform(childEdge.getMapFunction()), childEdge.getWeight());
}
@Override
public void visit(ReductionKeyEdgeRequestDTO rkEdge) {
getManager().addReductionKeyEdge(service, rkEdge.getReductionKey(), transform(rkEdge.getMapFunction()), rkEdge.getWeight(), rkEdge.getFriendlyName());
}
}));
getManager().saveBusinessService(service);
return Response.noContent().build();
}
use of org.opennms.web.rest.v2.bsm.model.edge.ReductionKeyEdgeRequestDTO in project opennms by OpenNMS.
the class BusinessServiceRestService method create.
@POST
public Response create(@Context final UriInfo uriInfo, final BusinessServiceRequestDTO request) {
final BusinessService service = getManager().createBusinessService();
service.setName(request.getName());
service.setAttributes(request.getAttributes());
service.setReduceFunction(transform(request.getReduceFunction()));
request.getEdges().forEach(eachEdge -> eachEdge.accept(new EdgeRequestDTOVisitor() {
@Override
public void visit(IpServiceEdgeRequestDTO ipEdge) {
service.addIpServiceEdge(getManager().getIpServiceById(ipEdge.getIpServiceId()), transform(ipEdge.getMapFunction()), ipEdge.getWeight(), ipEdge.getFriendlyName());
}
@Override
public void visit(ChildEdgeRequestDTO childEdge) {
service.addChildEdge(getManager().getBusinessServiceById(childEdge.getChildId()), transform(childEdge.getMapFunction()), childEdge.getWeight());
}
@Override
public void visit(ReductionKeyEdgeRequestDTO rkEdge) {
service.addReductionKeyEdge(rkEdge.getReductionKey(), transform(rkEdge.getMapFunction()), rkEdge.getWeight(), rkEdge.getFriendlyName());
}
}));
getManager().saveBusinessService(service);
return Response.created(RedirectHelper.getRedirectUri(uriInfo, service.getId())).build();
}
use of org.opennms.web.rest.v2.bsm.model.edge.ReductionKeyEdgeRequestDTO in project opennms by OpenNMS.
the class BusinessServiceRequestDTO method addReductionKey.
public void addReductionKey(String reductionKey, MapFunctionDTO mapFunction, int weight, String friendlyName) {
ReductionKeyEdgeRequestDTO edge = new ReductionKeyEdgeRequestDTO();
edge.setReductionKey(reductionKey);
edge.setMapFunction(mapFunction);
edge.setWeight(weight);
edge.setFriendlyName(friendlyName);
getReductionKeys().add(edge);
}
use of org.opennms.web.rest.v2.bsm.model.edge.ReductionKeyEdgeRequestDTO in project opennms by OpenNMS.
the class AbstractBusinessServiceRestServiceIT method canAddReductionKeyEdge.
@Test
public void canAddReductionKeyEdge() throws Exception {
// Create a business service without any edges
BusinessServiceEntity service = new BusinessServiceEntityBuilder().name("Dummy Service").reduceFunction(new HighestSeverityEntity()).toEntity();
final Long serviceId = m_businessServiceDao.save(service);
m_businessServiceDao.flush();
// The Request to send to create an edge
ReductionKeyEdgeRequestDTO edgeRequestDTO = new ReductionKeyEdgeRequestDTO();
edgeRequestDTO.setMapFunction(new FunctionsManager().getMapFunctionDTO(new Identity()));
// verify adding of existing ip service is possible
edgeRequestDTO.setReductionKey("1st reduction key");
sendData(POST, getMediaType(), buildReductionKeyEdgeUrl(serviceId), marshal(edgeRequestDTO), 200);
Assert.assertEquals(1, m_businessServiceDao.get(serviceId).getReductionKeyEdges().size());
// verify adding twice possible, but not modified
sendData(POST, getMediaType(), buildReductionKeyEdgeUrl(serviceId), marshal(edgeRequestDTO), 304);
Assert.assertEquals(1, m_businessServiceDao.get(serviceId).getReductionKeyEdges().size());
// verify adding of existing ip service is possible
edgeRequestDTO.setReductionKey("2nd reduction key");
sendData(POST, getMediaType(), buildReductionKeyEdgeUrl(serviceId), marshal(edgeRequestDTO), 200);
Assert.assertEquals(2, m_businessServiceDao.get(serviceId).getReductionKeyEdges().size());
}
Aggregations