summaryrefslogtreecommitdiffstats
path: root/vbd/gui/module/src/main/resources/vpp/services/bdm.interface.service.js
diff options
context:
space:
mode:
Diffstat (limited to 'vbd/gui/module/src/main/resources/vpp/services/bdm.interface.service.js')
-rw-r--r--vbd/gui/module/src/main/resources/vpp/services/bdm.interface.service.js74
1 files changed, 0 insertions, 74 deletions
diff --git a/vbd/gui/module/src/main/resources/vpp/services/bdm.interface.service.js b/vbd/gui/module/src/main/resources/vpp/services/bdm.interface.service.js
deleted file mode 100644
index 5fc907b7f..000000000
--- a/vbd/gui/module/src/main/resources/vpp/services/bdm.interface.service.js
+++ /dev/null
@@ -1,74 +0,0 @@
-/*
- * Copyright (c) 2016 Cisco Systems, Inc. and others. All rights reserved.
- *
- * This program and the accompanying materials are made available under the
- * terms of the Eclipse Public License v1.0 which accompanies this distribution,
- * and is available at http://www.eclipse.org/legal/epl-v10.html
- */
-define(['app/vpp/vpp.module'], function(vpp) {
- vpp.register.factory('bdmInterfaceService', function(VPPRestangular, bdmVppService) {
- var s = {};
-
- var Interface = function(tpId, interfaceName) {
- this['tp-id'] = tpId || null;
- this['vbridge-topology:user-interface'] = interfaceName;
- };
-
- s.createObj = function(tpId, interfaceName) {
- return new Interface(tpId, interfaceName);
- };
-
- s.add = function(interf, bridgeDomainId, vppId, successCallback, errorCallback) {
- var restObj = VPPRestangular.one('restconf').one('config').one('network-topology:network-topology')
- .one('topology').one(bridgeDomainId).one('node').one(vppId).one('termination-point').one(encodeURIComponent(interf['tp-id']));
-
- var dataObj = {'termination-point': [interf]};
-
- var write = function() {
- restObj.customPUT(dataObj).then(function(data) {
- successCallback(data);
- }, function(res) {
- errorCallback(res.data, res.status);
- });
- };
-
- var errorCallback = function() {};
-
- bdmVppService.checkAndWriteVpp(bridgeDomainId, vppId, write, errorCallback);
-
-
- };
-
- s.delete = function(interf, bridgeDomainId, vppId, successCallback, errorCallback) {
- var restObj = VPPRestangular.one('restconf').one('config').one('network-topology:network-topology')
- .one('topology').one(bridgeDomainId).one('node').one(vppId).one('termination-point').one(encodeURIComponent(interf['tp-id']));
-
- restObj.remove().then(function(data) {
- bdmVppService.checkAndDeleteVpp(bridgeDomainId, vppId,
- function() {
- successCallback(data);
- },
- function() {
-
- }
- );
-
- }, function(res) {
- errorCallback(res.data, res.status);
- });
- };
-
- s.get = function(bridgeDomainId, vppId, successCallback, errorCallback) {
- var restObj = VPPRestangular.one('restconf').one('config').one('network-topology:network-topology')
- .one('topology').one(bridgeDomainId).one('node').one(vppId);
-
- restObj.get().then(function(data) {
- successCallback(data);
- }, function(res) {
- errorCallback(res.data, res.status);
- });
- };
-
- return s;
- });
-}); \ No newline at end of file