Searched refs:ID (Results 1 - 25 of 228) sorted by relevance

12345678910

/forgerock/openam-v13/openam-server-only/src/main/webapp/assets/lib/yui/colorpicker/
H A Dcolorpicker-beta-debug.js260 * @property ID
263 proto.ID = {
267 * @property ID.R
276 * @property ID.R_HEX
285 * @property ID.G
294 * @property ID.G_HEX
304 * @property ID.B
313 * @property ID.B_HEX
322 * @property ID.H
331 * @property ID
[all...]
H A Dcolorpicker-beta-min.js18 YAHOO.widget.ColorPicker.superclass.constructor.call(this,el,attr);};YAHOO.extend(YAHOO.widget.ColorPicker,YAHOO.util.Element);var proto=YAHOO.widget.ColorPicker.prototype,Slider=YAHOO.widget.Slider,Color=YAHOO.util.Color,Dom=YAHOO.util.Dom,Event=YAHOO.util.Event,lang=YAHOO.lang,sub=lang.substitute;var b="yui-picker";proto.ID={R:b+"-r",R_HEX:b+"-rhex",G:b+"-g",G_HEX:b+"-ghex",B:b+"-b",B_HEX:b+"-bhex",H:b+"-h",S:b+"-s",V:b+"-v",PICKER_BG:b+"-bg",PICKER_THUMB:b+"-thumb",HUE_BG:b+"-hue-bg",HUE_THUMB:b+"-hue-thumb",HEX:b+"-hex",SWATCH:b+"-swatch",WEBSAFE_SWATCH:b+"-websafe-swatch",CONTROLS:b+"-controls",RGB_CONTROLS:b+"-rgb-controls",HSV_CONTROLS:b+"-hsv-controls",HEX_CONTROLS:b+"-hex-controls",HEX_SUMMARY:b+"-hex-summary",CONTROLS_LABEL:b+"-controls-label"};proto.TXT={ILLEGAL_HEX:"Illegal hex value entered",SHOW_CONTROLS:"Show color details",HIDE_CONTROLS:"Hide color details",CURRENT_COLOR:"Currently selected color: {rgb}",CLOSEST_WEBSAFE:"Closest websafe color: {rgb}. Click to select.",R:"R",G:"G",B:"B",H:"H",S:"S",V:"V",HEX:"#",DEG:"\u00B0",PERCENT:"%"};proto.IMAGE={PICKER_THUMB:"../../build/colorpicker/assets/picker_thumb.png",HUE_THUMB:"../../build/colorpicker/assets/hue_thumb.png"};proto.DEFAULT={PICKER_SIZE:180};proto.OPT={HUE:"hue",SATURATION:"saturation",VALUE:"value",RED:"red",GREEN:"green",BLUE:"blue",HSV:"hsv",RGB:"rgb",WEBSAFE:"websafe",HEX:"hex",PICKER_SIZE:"pickersize",SHOW_CONTROLS:"showcontrols",SHOW_RGB_CONTROLS:"showrgbcontrols",SHOW_HSV_CONTROLS:"showhsvcontrols",SHOW_HEX_CONTROLS:"showhexcontrols",SHOW_HEX_SUMMARY:"showhexsummary",SHOW_WEBSAFE:"showwebsafe",CONTAINER:"container",IDS:"ids",ELEMENTS:"elements",TXT:"txt",IMAGES:"images",ANIMATE:"animate"};proto.setValue=function(rgb,silent){silent=(silent)||false;this.set(this.OPT.RGB,rgb,silent);_updateSliders.call(this);};proto.hueSlider=null;proto.pickerSlider=null;var _getH=function(){var size=this.get(this.OPT.PICKER_SIZE),h=(size-this.hueSlider.getValue())/size;h=Math.round(h*360);return(h===360)?0:h;};var _getS=function(){return this.pickerSlider.getXValue()/this.get(this.OPT.PICKER_SIZE);};var _getV=function(){var size=this.get(this.OPT.PICKER_SIZE);return(size-this.pickerSlider.getYValue())/size;};var _updateSwatch=function(){var rgb=this.get(this.OPT.RGB),websafe=this.get(this.OPT.WEBSAFE),el=this.getElement(this.ID.SWATCH),color=rgb.join(","),txt=this.get(this.OPT.TXT);Dom.setStyle(el,"background-color","rgb("+color+")");el.title=lang.substitute(txt.CURRENT_COLOR,{"rgb":"#"+this.get(this.OPT.HEX)});el=this.getElement(this.ID.WEBSAFE_SWATCH);color=websafe.join(",");Dom.setStyle(el,"background-color","rgb("+color+")");el.title=lang.substitute(txt.CLOSEST_WEBSAFE,{"rgb":"#"+Color.rgb2hex(websafe)});};var _getValuesFromSliders=function(){var h=_getH.call(this),s=_getS.call(this),v=_getV.call(this);rgb=Color.hsv2rgb(h,s,v);var websafe=Color.websafe(rgb);var hex=Color.rgb2hex(rgb[0],rgb[1],rgb[2]);this.set(this.OPT.RGB,rgb);};var _updateFormFields=function(){this.getElement(this.ID.H).value=this.get(this.OPT.HUE);this.getElement(this.ID.S).value=this.get(this.OPT.SATURATION);this.getElement(this.ID.V).value=this.get(this.OPT.VALUE);this.getElement(this.ID.R).value=this.get(this.OPT.RED);this.getElement(this.ID.R_HEX).innerHTML=Color.dec2hex(this.get(this.OPT.RED));this.getElement(this.ID.G).value=this.get(this.OPT.GREEN);this.getElement(this.ID
[all...]
H A Dcolorpicker-beta.js257 * @property ID
260 proto.ID = {
264 * @property ID.R
273 * @property ID.R_HEX
282 * @property ID.G
291 * @property ID.G_HEX
301 * @property ID.B
310 * @property ID.B_HEX
319 * @property ID.H
328 * @property ID
[all...]
/forgerock/openam/openam-server-only/src/main/webapp/assets/lib/yui/colorpicker/
H A Dcolorpicker-beta-debug.js260 * @property ID
263 proto.ID = {
267 * @property ID.R
276 * @property ID.R_HEX
285 * @property ID.G
294 * @property ID.G_HEX
304 * @property ID.B
313 * @property ID.B_HEX
322 * @property ID.H
331 * @property ID
[all...]
H A Dcolorpicker-beta-min.js18 YAHOO.widget.ColorPicker.superclass.constructor.call(this,el,attr);};YAHOO.extend(YAHOO.widget.ColorPicker,YAHOO.util.Element);var proto=YAHOO.widget.ColorPicker.prototype,Slider=YAHOO.widget.Slider,Color=YAHOO.util.Color,Dom=YAHOO.util.Dom,Event=YAHOO.util.Event,lang=YAHOO.lang,sub=lang.substitute;var b="yui-picker";proto.ID={R:b+"-r",R_HEX:b+"-rhex",G:b+"-g",G_HEX:b+"-ghex",B:b+"-b",B_HEX:b+"-bhex",H:b+"-h",S:b+"-s",V:b+"-v",PICKER_BG:b+"-bg",PICKER_THUMB:b+"-thumb",HUE_BG:b+"-hue-bg",HUE_THUMB:b+"-hue-thumb",HEX:b+"-hex",SWATCH:b+"-swatch",WEBSAFE_SWATCH:b+"-websafe-swatch",CONTROLS:b+"-controls",RGB_CONTROLS:b+"-rgb-controls",HSV_CONTROLS:b+"-hsv-controls",HEX_CONTROLS:b+"-hex-controls",HEX_SUMMARY:b+"-hex-summary",CONTROLS_LABEL:b+"-controls-label"};proto.TXT={ILLEGAL_HEX:"Illegal hex value entered",SHOW_CONTROLS:"Show color details",HIDE_CONTROLS:"Hide color details",CURRENT_COLOR:"Currently selected color: {rgb}",CLOSEST_WEBSAFE:"Closest websafe color: {rgb}. Click to select.",R:"R",G:"G",B:"B",H:"H",S:"S",V:"V",HEX:"#",DEG:"\u00B0",PERCENT:"%"};proto.IMAGE={PICKER_THUMB:"../../build/colorpicker/assets/picker_thumb.png",HUE_THUMB:"../../build/colorpicker/assets/hue_thumb.png"};proto.DEFAULT={PICKER_SIZE:180};proto.OPT={HUE:"hue",SATURATION:"saturation",VALUE:"value",RED:"red",GREEN:"green",BLUE:"blue",HSV:"hsv",RGB:"rgb",WEBSAFE:"websafe",HEX:"hex",PICKER_SIZE:"pickersize",SHOW_CONTROLS:"showcontrols",SHOW_RGB_CONTROLS:"showrgbcontrols",SHOW_HSV_CONTROLS:"showhsvcontrols",SHOW_HEX_CONTROLS:"showhexcontrols",SHOW_HEX_SUMMARY:"showhexsummary",SHOW_WEBSAFE:"showwebsafe",CONTAINER:"container",IDS:"ids",ELEMENTS:"elements",TXT:"txt",IMAGES:"images",ANIMATE:"animate"};proto.setValue=function(rgb,silent){silent=(silent)||false;this.set(this.OPT.RGB,rgb,silent);_updateSliders.call(this);};proto.hueSlider=null;proto.pickerSlider=null;var _getH=function(){var size=this.get(this.OPT.PICKER_SIZE),h=(size-this.hueSlider.getValue())/size;h=Math.round(h*360);return(h===360)?0:h;};var _getS=function(){return this.pickerSlider.getXValue()/this.get(this.OPT.PICKER_SIZE);};var _getV=function(){var size=this.get(this.OPT.PICKER_SIZE);return(size-this.pickerSlider.getYValue())/size;};var _updateSwatch=function(){var rgb=this.get(this.OPT.RGB),websafe=this.get(this.OPT.WEBSAFE),el=this.getElement(this.ID.SWATCH),color=rgb.join(","),txt=this.get(this.OPT.TXT);Dom.setStyle(el,"background-color","rgb("+color+")");el.title=lang.substitute(txt.CURRENT_COLOR,{"rgb":"#"+this.get(this.OPT.HEX)});el=this.getElement(this.ID.WEBSAFE_SWATCH);color=websafe.join(",");Dom.setStyle(el,"background-color","rgb("+color+")");el.title=lang.substitute(txt.CLOSEST_WEBSAFE,{"rgb":"#"+Color.rgb2hex(websafe)});};var _getValuesFromSliders=function(){var h=_getH.call(this),s=_getS.call(this),v=_getV.call(this);rgb=Color.hsv2rgb(h,s,v);var websafe=Color.websafe(rgb);var hex=Color.rgb2hex(rgb[0],rgb[1],rgb[2]);this.set(this.OPT.RGB,rgb);};var _updateFormFields=function(){this.getElement(this.ID.H).value=this.get(this.OPT.HUE);this.getElement(this.ID.S).value=this.get(this.OPT.SATURATION);this.getElement(this.ID.V).value=this.get(this.OPT.VALUE);this.getElement(this.ID.R).value=this.get(this.OPT.RED);this.getElement(this.ID.R_HEX).innerHTML=Color.dec2hex(this.get(this.OPT.RED));this.getElement(this.ID.G).value=this.get(this.OPT.GREEN);this.getElement(this.ID
[all...]
H A Dcolorpicker-beta.js257 * @property ID
260 proto.ID = {
264 * @property ID.R
273 * @property ID.R_HEX
282 * @property ID.G
291 * @property ID.G_HEX
301 * @property ID.B
310 * @property ID.B_HEX
319 * @property ID.H
328 * @property ID
[all...]
/forgerock/openidm-v4/openidm-workflow-activiti/src/main/java/org/forgerock/openidm/workflow/activiti/impl/mixin/
H A DFormPropertyHandlerMixIn.java28 @JsonProperty(ActivitiConstants.ID)
H A DProcessDefinitionMixIn.java36 @JsonProperty(ActivitiConstants.ID)
H A DTaskDefinitionMixIn.java32 @JsonProperty(ActivitiConstants.ID)
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/cts/api/tokens/
H A DTokenIdFactory.java32 public static final String ID = OAuthTokenField.ID.getOAuthField(); field in class:TokenIdFactory
48 * Converts the SAML primary token ID from CTS to a human readable form.
50 * @param primaryId The primary token ID for the SAML token. May not be null.
51 * @return Non null ID.
66 * Converts the SAML secondary token ID from CTS to a human readable form.
68 * @param secondaryId The secondary token ID for the SAML token. May not be null.
69 * @return Non null ID.
98 * @param existingId The existing ID of the token.
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/cts/api/tokens/
H A DTokenIdFactory.java32 public static final String ID = OAuthTokenField.ID.getOAuthField(); field in class:TokenIdFactory
48 * Converts the SAML primary token ID from CTS to a human readable form.
50 * @param primaryId The primary token ID for the SAML token. May not be null.
51 * @return Non null ID.
66 * Converts the SAML secondary token ID from CTS to a human readable form.
68 * @param secondaryId The secondary token ID for the SAML token. May not be null.
69 * @return Non null ID.
98 * @param existingId The existing ID of the token.
/forgerock/openam-v13/openam-tools/openam-diagnostics/openam-diagnostics-base/src/main/java/com/sun/identity/diagnostic/base/services/systeminfo/
H A DSystemInfoConstants.java90 public static final String ID = "id"; field in interface:SystemInfoConstants
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/cts/api/fields/
H A DOAuthTokenField.java44 ID(OAuth2Constants.CoreTokenParams.ID, CoreTokenField.TOKEN_ID), enum constant in enum:OAuthTokenField
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/
H A DStatelessTokenMetadata.java20 import static org.forgerock.openam.oauth2.OAuth2Constants.CoreTokenParams.ID;
97 map.put(ID, getId());
/forgerock/openam/openam-core/src/main/java/com/sun/identity/common/configuration/
H A DSiteConfiguration.java363 throw new SMSException("Unable to determine Site ID for SiteName:["+siteName+
364 "], SSOToken ID:["+ssoToken.getTokenID()+"]");
491 * Sets the ID of a site.
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/cts/api/fields/
H A DOAuthTokenField.java44 ID(OAuth2Constants.CoreTokenParams.ID, CoreTokenField.TOKEN_ID), enum constant in enum:OAuthTokenField
/forgerock/openam-v13/openam-federation/openam-federation-library/src/test/java/com/sun/identity/saml/xmlsig/
H A DXMLSignatureManagerTest.java71 encodedPrivatePass, null, SAML2Constants.ID, ID_ATTRIBUTE_VALUE, true, null);
90 null, null, SAML2Constants.ID, ID_ATTRIBUTE_VALUE, true, null);
106 null, SAML2Constants.ID, ID_ATTRIBUTE_VALUE, true, null);
123 null, null, SAML2Constants.ID, ID_ATTRIBUTE_VALUE, true, null);
143 null, SAML2Constants.ID, ID_ATTRIBUTE_VALUE, true, null);
157 // Test that a signed document can be verified with an ID
181 SAML2Constants.ID, DEFAULT_PRIVATE_KEY_ALIAS);
/forgerock/openam/openam-federation/openam-federation-library/src/test/java/com/sun/identity/saml/xmlsig/
H A DXMLSignatureManagerTest.java71 encodedPrivatePass, null, SAML2Constants.ID, ID_ATTRIBUTE_VALUE, true, null);
90 null, null, SAML2Constants.ID, ID_ATTRIBUTE_VALUE, true, null);
106 null, SAML2Constants.ID, ID_ATTRIBUTE_VALUE, true, null);
123 null, null, SAML2Constants.ID, ID_ATTRIBUTE_VALUE, true, null);
143 null, SAML2Constants.ID, ID_ATTRIBUTE_VALUE, true, null);
157 // Test that a signed document can be verified with an ID
181 SAML2Constants.ID, DEFAULT_PRIVATE_KEY_ALIAS);
/forgerock/openidm-v4/openidm-zip/src/main/resources/db/db2/scripts/
H A Dopenidm_zOS_integer.sql32 (ID INTEGER
37 ,PRIMARY KEY (ID)
46 (ID ASC
93 (ID INTEGER
101 ,PRIMARY KEY (ID)
105 REFERENCES SOPENIDM.OBJECTTYPES (ID )
123 (ID ASC
189 REFERENCES SOPENIDM.GENERICOBJECTS (ID )
249 (ID INTEGER
257 ,PRIMARY KEY (ID)
[all...]
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/cts/adapters/
H A DOAuthAdapter.java93 Set<String> idSet = (Set<String>) request.get(TokenIdFactory.ID).getObject();
100 request.get(TokenIdFactory.ID).setObject(id);
114 * - Skip the ID as it is extracted by the TokenIdFactory.
119 if (OAuthTokenField.ID.getOAuthField().equals(key)) {
/forgerock/openam-v13/openam-sts/openam-common-sts/src/main/java/org/forgerock/openam/sts/token/validator/
H A DPrincipalFromSessionImpl.java43 private static final String ID = "id"; field in class:PrincipalFromSessionImpl
123 JsonValue principalIdJsonValue = responseJson.get(ID);
125 String message = "Principal from session response does not contain " + ID + " string entry. The obtained entry: "
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/cts/adapters/
H A DOAuthAdapter.java93 Collection<String> idSet = request.get(TokenIdFactory.ID).asCollection(String.class);
100 request.get(TokenIdFactory.ID).setObject(id);
114 * - Skip the ID as it is extracted by the TokenIdFactory.
119 if (OAuthTokenField.ID.getOAuthField().equals(key)) {
/forgerock/openam/openam-sts/openam-common-sts/src/main/java/org/forgerock/openam/sts/token/validator/
H A DPrincipalFromSessionImpl.java43 private static final String ID = "id"; field in class:PrincipalFromSessionImpl
123 JsonValue principalIdJsonValue = responseJson.get(ID);
125 String message = "Principal from session response does not contain " + ID + " string entry. The obtained entry: "
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/common/configuration/
H A DSiteConfiguration.java365 throw new SMSException("Unable to determine Site ID for SiteName:["+siteName+
366 "], SSOToken ID:["+ssoToken.getTokenID()+"]");
488 * Sets the ID of a site.
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/sm/datalayer/impl/uma/
H A DUmaAuditEntry.java31 public static final String ID = "_id"; field in class:UmaAuditEntry
118 field(ID, id),

Completed in 1216 milliseconds

12345678910