2 * ============LICENSE_START=======================================================
4 * ================================================================================
5 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6 * ================================================================================
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
11 * http://www.apache.org/licenses/LICENSE-2.0
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 * ============LICENSE_END=========================================================
20 app.controller('editCLVarbindController',function ($scope, $modalInstance, message, UserInfoServiceDS2, Notification){
21 if(message.varbindDictionaryData==null)
22 $scope.label='Add Varbind '
24 $scope.label='Edit Varbind'
25 $scope.disableCd=true;
28 /*getting user info from session*/
30 UserInfoServiceDS2.getFunctionalMenuStaticDetailSession()
31 .then(function (response) {
32 userid = response.userid;
35 $scope.editCLVarbind = message.varbindDictionaryData;
37 $scope.saveCLVarbind = function(varbindDictionaryData) {
38 var regex = new RegExp("^[a-zA-Z0-9_]*$");
39 if(!regex.test(varbindDictionaryData.varbindName)) {
40 Notification.error("Enter Valid ClosedLoop Varbind Name without spaces or special characters");
42 var uuu = "saveDictionary/cl_dictionary/save_varbind";
43 var postData={varbindDictionaryData: varbindDictionaryData, userid: userid};
48 contentType: 'application/json',
49 data: JSON.stringify(postData),
50 success : function(data){
51 $scope.$apply(function(){
52 $scope.varbindDictionaryDatas=data.varbindDictionaryDatas;});
53 if($scope.varbindDictionaryDatas == "Duplicate"){
54 Notification.error("ClosedLoop Varbind Dictionary exists with Same Varbind Name.")
56 console.log($scope.varbindDictionaryDatas);
57 $modalInstance.close({varbindDictionaryDatas:$scope.varbindDictionaryDatas});
60 error : function(data){
61 alert("Error while saving.");
67 $scope.close = function() {
68 $modalInstance.close();