Searched refs:obj (Results 1 - 25 of 907) sorted by relevance

1234567891011>>

/forgerock/openam-v13/openam-authentication/deviceprint/scripts/src/main/js/org/forgerock/openam/extensions/authmodules/adaptivedeviceprint/
H A DConstants.js34 var obj = {};
36 obj.EVENT_RECOLLECT_DATA = "adaptivedeviceprint.recollect_data";
37 obj.adaptiveDevicePrintCookieName = "AdaptiveDevicePrintCookie";
39 return obj;
H A DAbstractDevicePrintInfoCollector.js36 var obj = function AbstractDevicePrintInfoCollector() {
49 obj.prototype.gatherInformation = function() {};
51 return obj;
H A DAdaptiveDevicePrintView.js34 var obj = {};
36 obj.getLoginForm = function() {
40 obj.getDevicePrintInfoInput = function() {
41 if(!obj.getLoginForm().find("[name=IDToken0]").length) {
42 obj.getLoginForm().append("<input name='IDToken0' type='hidden' />");
45 return obj.getLoginForm().find("[name=IDToken0]");
48 return obj;
H A DAdaptiveDevicePrintCtrl.js41 var obj = {};
43 obj.view = adaptiveDevicePrintView;
45 obj.init = function() {
46 obj.fillInputWithDevicePrintInfo();
48 eventManager.registerListener(constants.EVENT_RECOLLECT_DATA, obj.fillInputWithDevicePrintInfo);
51 obj.fillInputWithDevicePrintInfo = function() {
52 if( obj.view.getLoginForm().size() === 0 ) {
53 setTimeout(obj.fillInputWithDevicePrintInfo, 100);
59 obj.view.getDevicePrintInfoInput().val(JSON.stringify(info));
62 return obj;
[all...]
H A DDevicePrintInfoAggregator.js36 var obj = {};
38 obj.infoCollectorClasses = ["org/forgerock/openam/extensions/authmodules/adaptivedeviceprint/infocollectors/ScreenInfoCollector",
44 obj.collectInfo = function() {
46 for(i = 0; i < obj.infoCollectorClasses.length; i++) {
47 oneCollectorInfo = require(obj.infoCollectorClasses[i]).gatherInformation();
55 return obj;
/forgerock/openidm-v4/openidm-ui/openidm-ui-common/src/main/js/org/forgerock/openidm/ui/common/delegates/
H A DSystemHealthDelegate.js25 var obj = new AbstractDelegate(constants.host + "/openidm/health");
27 obj.connectorDelegateCache = {};
29 obj.getOsHealth = function() {
30 return obj.serviceCall({
35 obj.getMemoryHealth = function() {
36 return obj.serviceCall({
41 obj.getReconHealth = function() {
42 return obj.serviceCall({
47 return obj;
H A DInfoDelegate.js24 var obj = new AbstractDelegate(constants.host + "/openidm/info/");
26 obj.getVersion = function() {
27 return obj.serviceCall({
32 return obj;
/forgerock/openidm-v4/openidm-ui/openidm-ui-common/src/main/js/config/messages/
H A DCommonIDMMessages.js22 var obj = {
33 return obj;
/forgerock/openidm-v4/openidm-ui/openidm-ui-admin/src/main/js/org/forgerock/openidm/ui/admin/delegates/
H A DAuditDelegate.js25 var obj = new AbstractDelegate(constants.host + "/openidm/audit/");
27 obj.availableHandlers = function() {
28 return obj.serviceCall({
34 return obj;
H A DClusterDelegate.js25 var obj = new AbstractDelegate(constants.host + "/openidm");
27 obj.getClusters = function() {
28 return obj.serviceCall({
34 return obj;
H A DSchedulerDelegate.js24 var obj = new AbstractDelegate(constants.host + "/openidm/scheduler");
26 obj.availableSchedules = function() {
27 return obj.serviceCall({
33 obj.specificSchedule = function(scheduleId) {
34 return obj.serviceCall({
40 obj.saveSchedule = function(scheduleId, schedule) {
41 return obj.serviceCall({
48 obj.deleteSchedule = function(scheduleId) {
49 return obj.serviceCall({
55 obj
[all...]
H A DMaintenanceDelegate.js25 var obj = new AbstractDelegate(constants.host + "/openidm/maintenance");
27 obj.getStatus = function () {
28 return obj.serviceCall({
34 obj.disable = function () {
35 return obj.serviceCall({
41 obj.enable = function () {
42 return obj.serviceCall({
48 obj.getUpdateLogs = function () {
49 return obj.serviceCall({
55 obj
[all...]
H A DConnectorDelegate.js27 var obj = new AbstractDelegate(constants.host + "/openidm/system");
29 obj.connectorDelegateCache = {};
31 obj.availableConnectors = function() {
32 return obj.serviceCall({
38 obj.detailsConnector = function(connectorParams) {
39 return obj.serviceCall({
46 obj.testConnector = function(connectorParams) {
53 return obj.serviceCall({
61 obj.currentConnectors = function() {
65 if(obj
[all...]
H A DWorkflowDelegate.js24 var obj = new AbstractDelegate(constants.host + "/openidm/workflow/processdefinition");
26 obj.availableWorkflows = function() {
36 return obj.serviceCall({
43 obj.workflowFormProperties = function(id) {
50 return obj.serviceCall({
57 return obj;
/forgerock/openidm-v4/openidm-ui/openidm-ui-common/src/main/js/org/forgerock/openidm/ui/common/workflow/
H A DFormManager.js22 var obj = new AbstractConfigurationAware();
24 obj.getViewForForm = function(name) {
25 return obj.configuration.forms[name];
28 return obj;
/forgerock/openidm-v4/openidm-ui/openidm-ui-enduser/src/main/js/config/routes/
H A DSelfServiceRoutesConfig.js22 var obj = {
31 obj.landingPage = obj.dashboard;
33 return obj;
/forgerock/openidm-v4/openidm-ui/openidm-ui-common/src/main/js/config/routes/
H A DCommonIDMRoutesConfig.js21 var obj = {
34 return obj;
/forgerock/openam-v13/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/admin/delegates/
H A DPoliciesDelegate.js24 var obj = new AbstractDelegate(Constants.host + "/" + Constants.context + "/json"),
30 obj.getApplicationType = function (type) {
31 return obj.serviceCall({
37 obj.getDecisionCombiners = function () {
38 return obj.serviceCall({
44 obj.getEnvironmentConditions = function () {
45 return obj.serviceCall({
51 obj.getSubjectConditions = function () {
52 return obj.serviceCall({
58 obj
[all...]
/forgerock/openam-v13/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/dashboard/delegates/
H A DTrustedDevicesDelegate.js26 var obj = new AbstractDelegate(Constants.host + "/" + Constants.context + "/json/");
28 obj.getTrustedDevices = function () {
29 return obj.serviceCall({
36 obj.deleteTrustedDevice = function (id) {
37 return obj.serviceCall({
45 return obj;
/forgerock/openidm-v4/openidm-ui/openidm-ui-enduser/src/main/js/org/forgerock/openidm/ui/util/delegates/
H A DSiteConfigurationDelegate.js27 var obj = commonSiteConfigurationDelegate;
29 obj.adminCheck = false;
31 obj.checkForDifferences = function(){
32 if(conf.loggedUser && _.contains(conf.loggedUser.uiroles,"ui-admin") && !obj.adminCheck){
39 obj.adminCheck = true;
47 return obj;
/forgerock/openam-v13/openam-authentication/deviceprint/scripts/src/main/js/org/forgerock/openam/extensions/authmodules/adaptivedeviceprint/infocollectors/
H A DTimezoneCollector.js36 var obj = new AbstractDevicePrintInfoCollector();
38 obj.gatherInformation = function() {
51 return obj;
H A DGeolocationCollector.js40 var obj = new AbstractDevicePrintInfoCollector(), position;
42 obj.gatherInformation = function() {
43 if(obj.position) {
46 ret.longitude = obj.position.coords.longitude;
47 ret.latitude = obj.position.coords.latitude;
56 obj.getPosition = function() {
59 obj.position = pos;
70 obj.getPosition();
72 return obj;
/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/admin/services/realm/
H A DDashboardService.js25 const obj = new AbstractDelegate(`${Constants.host}/${Constants.context}/json`);
27 obj.dashboard = {
29 all: (realm) => obj.serviceCall({
36 return obj;
/forgerock/openam-v13/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/user/delegates/
H A DTokenDelegate.js29 var obj = new AbstractDelegate(constants.host + "/" + constants.context + "/frrest/oauth2/token");
36 obj.getAllTokens = function (successCallback, errorCallback) {
38 obj.serviceCall({ url: "/?_queryid=*", success: function (data) {
52 obj.deleteToken = function (successCallback, errorCallback, id) {
53 obj.serviceCall({ type: "DELETE", url: "/" + id, success: function () {
66 obj.getTokenByID = function (successCallback, errorCallback, id) {
67 obj.serviceCall({ url: "/" + id, success: function (data) {
74 return obj;
/forgerock/openidm-v4/openidm-ui/openidm-ui-enduser/src/main/js/config/messages/
H A DSelfServiceMessages.js22 var obj = {
46 return obj;

Completed in 501 milliseconds

1234567891011>>