forked from community/device-mgt-core
parent
2efdc30177
commit
f7509f698d
@ -1,27 +0,0 @@
|
|||||||
<%
|
|
||||||
/*
|
|
||||||
* Copyright (c) 2015, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
|
|
||||||
*
|
|
||||||
* WSO2 Inc. licenses this file to you 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.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
|
||||||
@Deprecated - new
|
|
||||||
*/
|
|
||||||
|
|
||||||
// var apiWrapperUtil = require("/app/modules/token-handlers.js")["handlers"];
|
|
||||||
// var tokenCookie = apiWrapperUtil.refreshToken();
|
|
||||||
// print(tokenCookie);
|
|
||||||
%>
|
|
@ -1,98 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright (c) 2015, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
|
|
||||||
*
|
|
||||||
* WSO2 Inc. licenses this file to you 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.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
|
||||||
@Deprecated - new
|
|
||||||
*/
|
|
||||||
|
|
||||||
/**
|
|
||||||
* This invokerRequestWrapper contains the wrappers for invoker util requests.
|
|
||||||
*/
|
|
||||||
//var invokerRequestWrapper = function () {
|
|
||||||
//
|
|
||||||
// var constants = require("/modules/constants.js");
|
|
||||||
// var serviceInvokers = require("/modules/token-protected-service-invokers.js").backendServiceInvoker;
|
|
||||||
//
|
|
||||||
// var publicWrappers = [];
|
|
||||||
//
|
|
||||||
// publicWrappers.initiate = function (method, url, payload) {
|
|
||||||
// switch (method) {
|
|
||||||
// case constants.HTTP_GET:
|
|
||||||
// var response = serviceInvokers.XMLHttp.get(url, function (responsePayload) {
|
|
||||||
// var response = {};
|
|
||||||
// response.content = responsePayload["responseContent"];
|
|
||||||
// response.status = "success";
|
|
||||||
// return response;
|
|
||||||
// },
|
|
||||||
// function (responsePayload) {
|
|
||||||
// var response = {};
|
|
||||||
// response.content = responsePayload;
|
|
||||||
// response.status = "error";
|
|
||||||
// return response;
|
|
||||||
// });
|
|
||||||
// return response;
|
|
||||||
// break;
|
|
||||||
// case constants.HTTP_POST:
|
|
||||||
// var response = serviceInvokers.XMLHttp.post(url, payload, function (responsePayload) {
|
|
||||||
// var response = {};
|
|
||||||
// response.content = responsePayload["responseContent"];
|
|
||||||
// response.status = "success";
|
|
||||||
// return response;
|
|
||||||
// },
|
|
||||||
// function (responsePayload) {
|
|
||||||
// var response = {};
|
|
||||||
// response.content = responsePayload;
|
|
||||||
// response.status = "error";
|
|
||||||
// return response;
|
|
||||||
// });
|
|
||||||
// return response;
|
|
||||||
// break;
|
|
||||||
// case constants.HTTP_PUT:
|
|
||||||
// var response = serviceInvokers.XMLHttp.put(url, payload, function (responsePayload) {
|
|
||||||
// var response = {};
|
|
||||||
// response.content = responsePayload["responseContent"];
|
|
||||||
// response.status = "success";
|
|
||||||
// return response;
|
|
||||||
// },
|
|
||||||
// function (responsePayload) {
|
|
||||||
// var response = {};
|
|
||||||
// response.content = responsePayload;
|
|
||||||
// response.status = "error";
|
|
||||||
// return response;
|
|
||||||
// });
|
|
||||||
// return response;
|
|
||||||
// break;
|
|
||||||
// case constants.HTTP_DELETE:
|
|
||||||
// var response = serviceInvokers.XMLHttp.delete(url, function (responsePayload) {
|
|
||||||
// var response = {};
|
|
||||||
// response.content = responsePayload["responseContent"];
|
|
||||||
// response.status = "success";
|
|
||||||
// return response;
|
|
||||||
// },
|
|
||||||
// function (responsePayload) {
|
|
||||||
// var response = {};
|
|
||||||
// response.content = responsePayload;
|
|
||||||
// response.status = "error";
|
|
||||||
// return response;
|
|
||||||
// });
|
|
||||||
// return response;
|
|
||||||
// break;
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
//}();
|
|
@ -1,74 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright (c) 2016, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
|
|
||||||
*
|
|
||||||
* WSO2 Inc. licenses this file to you 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.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
|
||||||
@Deprecated - new
|
|
||||||
*/
|
|
||||||
|
|
||||||
//var serverAddress = function () {
|
|
||||||
// var log = new Log("serverAddress.js");
|
|
||||||
// var process = require("process"),
|
|
||||||
// host = process.getProperty('server.host'),
|
|
||||||
// ip = process.getProperty('carbon.local.ip');
|
|
||||||
// var publicMethods = {};
|
|
||||||
// publicMethods.getHTTPSAddress = function () {
|
|
||||||
// var port = process.getProperty('mgt.transport.https.proxyPort');
|
|
||||||
// if (!port) {
|
|
||||||
// port = process.getProperty('mgt.transport.https.port');
|
|
||||||
// }
|
|
||||||
// if (host === "localhost") {
|
|
||||||
// return "https://" + ip + ":" + port;
|
|
||||||
// } else {
|
|
||||||
// return "https://" + host + ":" + port;
|
|
||||||
// }
|
|
||||||
// };
|
|
||||||
// publicMethods.getHPPTAddress = function () {
|
|
||||||
// var port = process.getProperty('mgt.transport.http.proxyPort');
|
|
||||||
// if (!port) {
|
|
||||||
// port = process.getProperty('mgt.transport.http.port');
|
|
||||||
// }
|
|
||||||
// if (host === "localhost") {
|
|
||||||
// return "http://" + ip + ":" + port;
|
|
||||||
// } else {
|
|
||||||
// return "http://" + host + ":" + port;
|
|
||||||
// }
|
|
||||||
// };
|
|
||||||
// publicMethods.getWSSAddress = function () {
|
|
||||||
// var port = process.getProperty('mgt.transport.https.proxyPort');
|
|
||||||
// if (!port) {
|
|
||||||
// port = process.getProperty('mgt.transport.https.port');
|
|
||||||
// }
|
|
||||||
// if (host === "localhost") {
|
|
||||||
// return "wss://" + ip + ":" + port;
|
|
||||||
// } else {
|
|
||||||
// return "wss://" + host + ":" + port;
|
|
||||||
// }
|
|
||||||
// };
|
|
||||||
// publicMethods.getWSAddress = function () {
|
|
||||||
// var port = process.getProperty('mgt.transport.http.proxyPort');
|
|
||||||
// if (!port) {
|
|
||||||
// port = process.getProperty('mgt.transport.http.port');
|
|
||||||
// }
|
|
||||||
// if (host === "localhost") {
|
|
||||||
// return "ws://" + ip + ":" + port;
|
|
||||||
// } else {
|
|
||||||
// return "ws://" + host + ":" + port;
|
|
||||||
// }
|
|
||||||
// };
|
|
||||||
// return publicMethods;
|
|
||||||
//}();
|
|
Loading…
Reference in new issue