Searched refs:obj (Results 51 - 75 of 907) sorted by relevance

1234567891011>>

/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/user/services/
H A DTokenService.js29 var obj = new AbstractDelegate(`${Constants.host}/${Constants.context}/frrest/oauth2/token`);
36 obj.getAllTokens = function (successCallback, errorCallback) {
38 obj.serviceCall({ url: "/?_queryid=*", success (data) {
52 obj.deleteToken = function (successCallback, errorCallback, id) {
53 obj.serviceCall({ type: "DELETE", url: `/${id}`, success () {
66 obj.getTokenByID = function (successCallback, errorCallback, id) {
67 obj.serviceCall({ url: `/${id}`, success (data) {
74 return obj;
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/profile/
H A DCacheObject.java40 private Object obj = null; field in class:CacheObject
46 obj = object;
55 return obj;
/forgerock/openam-v13/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/common/delegates/
H A DServerDelegate.js28 var obj = new AbstractDelegate(Constants.host + "/" + Constants.context + "/json/");
30 obj.getVersion = function () {
31 return obj.serviceCall({
40 obj.getConfiguration = function (callParams) {
41 return obj.serviceCall(_.extend({
47 return obj;
/forgerock/openam-v13/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/dashboard/delegates/
H A DMyApplicationsDelegate.js25 var obj = new AbstractDelegate(constants.host + "/" + constants.context + "/json/");
37 obj.getMyApplications = function () {
38 return obj.serviceCall({
44 obj.getAvailableApplications = function () {
45 return obj.serviceCall({
51 return obj;
H A DOAuthTokensDelegate.js26 var obj = new AbstractDelegate(Constants.host + "/" + Constants.context + "/json/");
28 obj.getApplications = function () {
29 return obj.serviceCall({
37 obj.revokeApplication = function (id) {
38 return obj.serviceCall({
47 return obj;
/forgerock/openidm-v4/openidm-ui/openidm-ui-admin/src/main/js/org/forgerock/openidm/ui/admin/delegates/
H A DScriptDelegate.js25 var obj = new AbstractDelegate(constants.host + "/openidm/script");
27 obj.evalScript = function(script, additionalGlobals) {
37 return obj.serviceCall({
49 obj.evalLinkQualifierScript = function(script) {
53 return obj.evalScript(script);
56 return obj;
H A DSecurityDelegate.js25 var obj = new AbstractDelegate(constants.host + "/openidm/security");
27 obj.getPublicKeyCert = function (storeType, alias) {
50 obj.uploadCert = function (storeType, alias, cert) {
58 obj.deleteCert = function (storeType, alias) {
70 return obj;
/forgerock/openidm-v4/openidm-ui/openidm-ui-common/src/main/js/org/forgerock/openidm/ui/common/delegates/
H A DOpenAMProxyDelegate.js26 var obj = new AbstractDelegate(constants.host + "/openidm/endpoint/openam" );
28 obj.logout = function () {
33 return obj.serviceCall({
44 obj.serverinfo = function (openamDeploymentUrl) {
45 return obj.serviceCall({
57 return obj;
H A DInternalUserDelegate.js26 var obj = new AbstractDelegate(constants.host + "/openidm/repo/internal/user");
28 obj.patchSelectedUserAttributes = function(id, rev, patchDefinitionObject, successCallback, errorCallback, noChangesCallback) {
31 return obj.readEntity(id).then(function(user) {
44 return obj.updateEntity(id, user, successCallback, errorCallback);
48 return obj;
H A DResourceDelegate.js28 var obj = new AbstractDelegate(constants.host + "/openidm/");
30 obj.getSchema = function(args){
51 return obj.getProvisioner(objectType, objectName).then(function(prov){
71 obj.serviceCall = function (callParams) {
81 obj.createResource = function (serviceUrl) {
84 obj.readResource = function (serviceUrl) {
87 obj.updateResource = function (serviceUrl) {
90 obj.deleteResource = function (serviceUrl, id, successCallback, errorCallback) {
106 return obj.serviceCall(callParams).fail(function(err){
113 obj
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/profile/
H A DCacheObject.java43 private Object obj = null; field in class:CacheObject
49 obj = object;
58 return obj;
/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/user/dashboard/services/
H A DMyApplicationsService.js25 var obj = new AbstractDelegate(`${Constants.host}/${Constants.context}/json`);
37 obj.getMyApplications = function () {
38 return obj.serviceCall({
44 obj.getAvailableApplications = function () {
45 return obj.serviceCall({
51 return obj;
H A DOAuthTokensService.js24 var obj = new AbstractDelegate(`${Constants.host}/${Constants.context}/json`);
26 obj.getApplications = function () {
27 return obj.serviceCall({
34 obj.revokeApplication = function (id) {
35 return obj.serviceCall({
43 return obj;
H A DTrustedDevicesService.js23 var obj = new AbstractDelegate(`${Constants.host}/${Constants.context}/json`);
25 obj.getTrustedDevices = function () {
26 return obj.serviceCall({
32 obj.deleteTrustedDevice = function (id) {
33 return obj.serviceCall({
40 return obj;
/forgerock/openam-v13/openam-authentication/openam-auth-windowsdesktopsso/src/main/java/com/sun/identity/authentication/modules/windowsdesktopsso/
H A DWindowsDesktopSSOPrincipal.java71 * @param obj Object to be compared for equality with this
76 public boolean equals(Object obj) { argument
77 if (obj == null) {
81 if (this == obj) {
85 if (! (obj instanceof WindowsDesktopSSOPrincipal)) {
89 WindowsDesktopSSOPrincipal wtp = (WindowsDesktopSSOPrincipal)obj;
/forgerock/openam/openam-authentication/openam-auth-windowsdesktopsso/src/main/java/com/sun/identity/authentication/modules/windowsdesktopsso/
H A DWindowsDesktopSSOPrincipal.java71 * @param obj Object to be compared for equality with this
76 public boolean equals(Object obj) { argument
77 if (obj == null) {
81 if (this == obj) {
85 if (! (obj instanceof WindowsDesktopSSOPrincipal)) {
89 WindowsDesktopSSOPrincipal wtp = (WindowsDesktopSSOPrincipal)obj;
/forgerock/openidm-v4/openidm-ui/openidm-ui-common/src/main/js/org/forgerock/openidm/ui/common/util/
H A DThemeManager.js27 var obj = {},
30 obj.loadThemeCSS = function (theme) {
55 obj.loadThemeConfig = function(){
68 obj.getTheme = function () {
70 themePromise = obj.loadThemeConfig().then(function (themeConfig) {
72 obj.loadThemeCSS(themeConfig);
80 return obj;
/forgerock/openam-v13/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/admin/utils/
H A DRedirectToLegacyConsole.js23 var obj = new AbstractDelegate(Constants.host + "/" + Constants.context),
26 obj.realm.redirectToTab(tab, realm);
30 obj.global = {
31 accessControl: function () { obj.global.redirectToTab(1); },
32 federation : function () { obj.global.redirectToTab(2); },
33 configuration: function () { obj.global.redirectToTab(4); },
34 sessions : function () { obj.global.redirectToTab(5); },
36 obj.getJATOPageSession("/").done(function (session) {
48 obj.commonTasks = function (realm, link) {
53 obj
[all...]
/forgerock/openidm-v4/openidm-ui/openidm-ui-admin/src/main/js/org/forgerock/openidm/ui/admin/util/
H A DConnectorUtils.js26 var obj = {};
28 obj.iconListDefaults = {
79 obj.cleanConnectorName = function(name) {
86 obj.getMappingDetails = function(sourceName, targetName) {
87 var iconList = obj.getIconList(),
100 details.targetIcon = obj.getIcon(details.targetConnector.connectorRef.connectorName, icons);
103 details.targetIcon = obj.getIcon("managedobject", icons);
111 details.sourceIcon = obj.getIcon(details.sourceConnector.connectorRef.connectorName, icons);
114 details.sourceIcon = obj.getIcon("managedobject", icons);
126 obj
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/xacml/context/
H A DContextFactory.java91 Object obj = XACMLSDKUtils.getObjectInstance(XACMLConstants.REQUEST);
92 if (obj == null) {
95 return (Request) obj;
111 Object obj = XACMLSDKUtils.getObjectInstance(
113 if (obj == null) {
116 return (Request) obj;
132 Object obj = XACMLSDKUtils.getObjectInstance(
134 if (obj == null) {
137 return (Request) obj;
149 Object obj
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/xacml/context/
H A DContextFactory.java91 Object obj = XACMLSDKUtils.getObjectInstance(XACMLConstants.REQUEST);
92 if (obj == null) {
95 return (Request) obj;
111 Object obj = XACMLSDKUtils.getObjectInstance(
113 if (obj == null) {
116 return (Request) obj;
132 Object obj = XACMLSDKUtils.getObjectInstance(
134 if (obj == null) {
137 return (Request) obj;
149 Object obj
[all...]
/forgerock/openam-v13/openam-authentication/deviceprint/scripts/src/main/js/org/forgerock/openam/extensions/authmodules/adaptivedeviceprint/
H A DEventManager.js40 var obj = {}, listenerProxyMap = [];
42 obj.sendEvent = function (eventId, event) {
47 obj.registerListener = function (eventId, callback) {
57 obj.unregisterListener = function (eventId, callback) {
64 return obj;
/forgerock/opendj-v3/opendj-dsml-servlet/src/main/java/org/opends/dsml/protocol/
H A DByteStringUtility.java45 * @param obj
51 public static ByteString convertValue(Object obj) throws IOException argument
54 if (obj != null)
56 if (obj instanceof String)
58 bs = ByteString.valueOfUtf8((String)obj);
60 else if (obj instanceof byte [])
62 bs = ByteString.wrap((byte [])obj);
64 else if (obj instanceof URI)
70 is = ((URI) obj).toURL().openStream();
86 else if (obj instanceo
[all...]
/forgerock/openam-v13/openam-authentication/deviceprint/scripts/src/main/js/org/forgerock/openam/extensions/authmodules/adaptivedeviceprint/infocollectors/
H A DBrowserFontsCollector.js31 var obj = new AbstractDevicePrintInfoCollector(),
39 obj.gatherInformation = function() {
51 return obj;
H A DBrowserPluginsCollector.js36 var obj = new AbstractDevicePrintInfoCollector();
38 obj.gatherInformation = function() {
56 return obj;

Completed in 120 milliseconds

1234567891011>>