Searched refs:method (Results 276 - 300 of 579) sorted by relevance

<<11121314151617181920>>

/forgerock/opendj-v3/opendj-server-legacy/src/snmp/src/org/opends/server/snmp/
H A DSNMPConnectionHandler.java89 * should be performed in the {@code initializeConnectionHandler} method.
265 Method method = sysclass.getDeclaredMethod("addURL", URL.class);
266 method.setAccessible(true);
267 method.invoke(sysloader, u);
271 }//end method
/forgerock/opendj-v3/opendj-server-legacy/src/test/java/org/opends/server/
H A DTestListener.java223 ITestNGMethod method = result.getMethod();
225 return cls.getName() + "#" + method.getMethodName();
238 // Peek ahead to see if we had multiple failures for the same method
314 // so that we get the output generated by any @BeforeClass method etc.
334 ITestNGMethod method = tr.getMethod();
336 String fqMethod = cls.getName() + "#" + method.getMethodName();
421 ITestNGMethod method = tr.getMethod();
423 String fqMethod = cls.getName() + "#" + method.getMethodName();
625 // Only warn once per method.
637 "The test method "
1004 getResultsForMethod(ITestNGMethod method) argument
1051 TestMethodResults(ITestNGMethod method) argument
[all...]
/forgerock/openidm-v4/openidm-shell/src/main/java/org/forgerock/openidm/shell/impl/
H A DBasicCommandScope.java164 for (Method method : methods) {
166 + method.getName());
168 commandMethods.add(method);
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/authentication/service/protocol/
H A DRemoteHttpServletRequest.java64 private String method = null; field in class:RemoteHttpServletRequest
114 method = getMethod();
148 * The default behavior of this method is to return getAuthType()
158 * The default behavior of this method is to return getCookies()
182 * The default behavior of this method is to return getDateHeader(String name)
193 * The default behavior of this method is to return getHeader(String name)
204 * The default behavior of this method is to return getHeaders(String name)
215 * The default behavior of this method is to return getHeaderNames()
226 * The default behavior of this method is to return getIntHeader(String name)
238 * The default behavior of this method i
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/csharpsource/Fedlet/Fedlet/source/Saml2/
H A DIdentityProvider.cs259 /// Gets the requested digest method for use with the specific IDP
273 /// Gets the requested signature and signing method for use with the specific IDP
284 // Default to SHA1 method for none specified
288 string method = node.InnerText.Trim().ToLowerInvariant();
289 if (String.IsNullOrEmpty(method))
294 // Ensure the method is a supported type.
295 switch (method)
314 // Unrecognised method
/forgerock/openam-v13/openam-server-only/src/main/webapp/assets/lib/yui/yahoo-dom-event/
H A Dyahoo-dom-event.js54 var testElement=function(node,method){return node&&node.nodeType==1&&(!method||method(node));};YAHOO.util.Dom={get:function(el){if(!el||el.tagName||el.item){return el;}
88 return this.isAncestor(document.documentElement,el);};return Y.Dom.batch(el,f,Y.Dom,true);},getElementsBy:function(method,tag,root,apply){tag=tag||'*';root=(root)?Y.Dom.get(root):null||document;if(!root){return[];}
89 var nodes=[],elements=root.getElementsByTagName(tag);for(var i=0,len=elements.length;i<len;++i){if(method(elements[i])){nodes[nodes.length]=elements[i];if(apply){apply(elements[i]);}}}
90 return nodes;},batch:function(el,method,o,override){el=(el&&el.tagName)?el:Y.Dom.get(el);if(!el||!method){return false;}
91 var scope=(override)?o:window;if(el.tagName||(!el.item&&!el.slice)){return method.call(scope,el,o);}
92 var collection=[];for(var i=0,len=el.length;i<len;++i){collection[collection.length]=method.call(scope,el[i],o);}
95 return width;},getAncestorBy:function(node,method){whil
[all...]
/forgerock/openam/openam-server-only/src/main/webapp/assets/lib/yui/yahoo-dom-event/
H A Dyahoo-dom-event.js54 var testElement=function(node,method){return node&&node.nodeType==1&&(!method||method(node));};YAHOO.util.Dom={get:function(el){if(!el||el.tagName||el.item){return el;}
88 return this.isAncestor(document.documentElement,el);};return Y.Dom.batch(el,f,Y.Dom,true);},getElementsBy:function(method,tag,root,apply){tag=tag||'*';root=(root)?Y.Dom.get(root):null||document;if(!root){return[];}
89 var nodes=[],elements=root.getElementsByTagName(tag);for(var i=0,len=elements.length;i<len;++i){if(method(elements[i])){nodes[nodes.length]=elements[i];if(apply){apply(elements[i]);}}}
90 return nodes;},batch:function(el,method,o,override){el=(el&&el.tagName)?el:Y.Dom.get(el);if(!el||!method){return false;}
91 var scope=(override)?o:window;if(el.tagName||(!el.item&&!el.slice)){return method.call(scope,el,o);}
92 var collection=[];for(var i=0,len=el.length;i<len;++i){collection[collection.length]=method.call(scope,el[i],o);}
95 return width;},getAncestorBy:function(node,method){whil
[all...]
/forgerock/openam-v13/openam-server-only/src/main/webapp/assets/lib/yui/element/
H A Delement-beta-debug.js76 * The method to use when setting the attribute's value.
77 * The method recieves the new value as the only argument.
78 * @property method
81 method: null,
93 * @method getValue
102 * @method setValue
139 if (this.method) {
140 this.method.call(owner, value);
157 * @method configure
178 * @method resetValu
[all...]
H A Delement-beta-min.js8 YAHOO.util.Attribute=function(hash,owner){if(owner){this.owner=owner;this.configure(hash,true);}};YAHOO.util.Attribute.prototype={name:undefined,value:null,owner:null,readOnly:false,writeOnce:false,_initialConfig:null,_written:false,method:null,validator:null,getValue:function(){return this.value;},setValue:function(value,silent){var beforeRetVal;var owner=this.owner;var name=this.name;var event={type:name,prevValue:this.getValue(),newValue:value};if(this.readOnly||(this.writeOnce&&this._written)){return false;}
11 if(this.method){this.method.call(owner,value);}
36 this.fireEvent('contentReady',{type:'contentReady',target:attr.element});},this,true);};var _initHTMLElement=function(attr){this.setAttributeConfig('element',{value:Dom.get(attr.element),readOnly:true});};var _initContent=function(attr){this.initAttributes(attr);this.setAttributes(attr,true);this.fireQueue();};var _registerHTMLAttr=function(key,map){var el=this.get('element');map=map||{};map.name=key;map.method=map.method||function(value){el[key]=value;};map.value=map.value||el[key];this._configs[key]=new YAHOO.util.At (…)
H A Delement-beta.js76 * The method to use when setting the attribute's value.
77 * The method recieves the new value as the only argument.
78 * @property method
81 method: null,
93 * @method getValue
102 * @method setValue
133 if (this.method) {
134 this.method.call(owner, value);
151 * @method configure
172 * @method resetValu
[all...]
/forgerock/openam/openam-server-only/src/main/webapp/assets/lib/yui/element/
H A Delement-beta-debug.js76 * The method to use when setting the attribute's value.
77 * The method recieves the new value as the only argument.
78 * @property method
81 method: null,
93 * @method getValue
102 * @method setValue
139 if (this.method) {
140 this.method.call(owner, value);
157 * @method configure
178 * @method resetValu
[all...]
H A Delement-beta-min.js8 YAHOO.util.Attribute=function(hash,owner){if(owner){this.owner=owner;this.configure(hash,true);}};YAHOO.util.Attribute.prototype={name:undefined,value:null,owner:null,readOnly:false,writeOnce:false,_initialConfig:null,_written:false,method:null,validator:null,getValue:function(){return this.value;},setValue:function(value,silent){var beforeRetVal;var owner=this.owner;var name=this.name;var event={type:name,prevValue:this.getValue(),newValue:value};if(this.readOnly||(this.writeOnce&&this._written)){return false;}
11 if(this.method){this.method.call(owner,value);}
36 this.fireEvent('contentReady',{type:'contentReady',target:attr.element});},this,true);};var _initHTMLElement=function(attr){this.setAttributeConfig('element',{value:Dom.get(attr.element),readOnly:true});};var _initContent=function(attr){this.initAttributes(attr);this.setAttributes(attr,true);this.fireQueue();};var _registerHTMLAttr=function(key,map){var el=this.get('element');map=map||{};map.name=key;map.method=map.method||function(value){el[key]=value;};map.value=map.value||el[key];this._configs[key]=new YAHOO.util.At (…)
H A Delement-beta.js76 * The method to use when setting the attribute's value.
77 * The method recieves the new value as the only argument.
78 * @property method
81 method: null,
93 * @method getValue
102 * @method setValue
133 if (this.method) {
134 this.method.call(owner, value);
151 * @method configure
172 * @method resetValu
[all...]
/forgerock/openam-v13/openam-server-only/src/main/webapp/assets/lib/yui/utilities/
H A Dutilities.js54 var testElement=function(node,method){return node&&node.nodeType==1&&(!method||method(node));};YAHOO.util.Dom={get:function(el){if(!el||el.tagName||el.item){return el;}
88 return this.isAncestor(document.documentElement,el);};return Y.Dom.batch(el,f,Y.Dom,true);},getElementsBy:function(method,tag,root,apply){tag=tag||'*';root=(root)?Y.Dom.get(root):null||document;if(!root){return[];}
89 var nodes=[],elements=root.getElementsByTagName(tag);for(var i=0,len=elements.length;i<len;++i){if(method(elements[i])){nodes[nodes.length]=elements[i];if(apply){apply(elements[i]);}}}
90 return nodes;},batch:function(el,method,o,override){el=(el&&el.tagName)?el:Y.Dom.get(el);if(!el||!method){return false;}
91 var scope=(override)?o:window;if(el.tagName||(!el.item&&!el.slice)){return method.call(scope,el,o);}
92 var collection=[];for(var i=0,len=el.length;i<len;++i){collection[collection.length]=method.call(scope,el[i],o);}
95 return width;},getAncestorBy:function(node,method){whil
[all...]
/forgerock/openam/openam-server-only/src/main/webapp/assets/lib/yui/utilities/
H A Dutilities.js54 var testElement=function(node,method){return node&&node.nodeType==1&&(!method||method(node));};YAHOO.util.Dom={get:function(el){if(!el||el.tagName||el.item){return el;}
88 return this.isAncestor(document.documentElement,el);};return Y.Dom.batch(el,f,Y.Dom,true);},getElementsBy:function(method,tag,root,apply){tag=tag||'*';root=(root)?Y.Dom.get(root):null||document;if(!root){return[];}
89 var nodes=[],elements=root.getElementsByTagName(tag);for(var i=0,len=elements.length;i<len;++i){if(method(elements[i])){nodes[nodes.length]=elements[i];if(apply){apply(elements[i]);}}}
90 return nodes;},batch:function(el,method,o,override){el=(el&&el.tagName)?el:Y.Dom.get(el);if(!el||!method){return false;}
91 var scope=(override)?o:window;if(el.tagName||(!el.item&&!el.slice)){return method.call(scope,el,o);}
92 var collection=[];for(var i=0,len=el.length;i<len;++i){collection[collection.length]=method.call(scope,el[i],o);}
95 return width;},getAncestorBy:function(node,method){whil
[all...]
/forgerock/openam-v13/openam-server-only/src/main/webapp/assets/lib/yui/button/
H A Dbutton-beta-debug.js102 * @method createInputElement
170 * @method setAttributesFromSrcElement
195 * @method setAttributeFromDOMAttribute
233 * @method setFormElementProperties
340 * @method initConfig
797 * @method _setType
815 * @method _setLabel
829 * @method _setTabIndex
843 * @method _setTitle
901 * @method _setDisable
[all...]
H A Dbutton-beta-min.js126 else if(this.get("type")!="link"&&bElInDoc&&oSrcElement&&oSrcElement==oElement){this._addListenersToForm();}},initAttributes:function(p_oAttributes){var oAttributes=p_oAttributes||{};YAHOO.widget.Button.superclass.initAttributes.call(this,oAttributes);this.setAttributeConfig("type",{value:(oAttributes.type||"push"),validator:Lang.isString,writeOnce:true,method:this._setType});this.setAttributeConfig("label",{value:oAttributes.label,validator:Lang.isString,method:this._setLabel});this.setAttributeConfig("value",{value:oAttributes.value});this.setAttributeConfig("name",{value:oAttributes.name,validator:Lang.isString});this.setAttributeConfig("tabindex",{value:oAttributes.tabindex,validator:Lang.isNumber,method:this._setTabIndex});this.configureAttribute("title",{value:oAttributes.title,validator:Lang.isString,method:this._setTitle});this.setAttributeConfig("disabled",{value:(oAttributes.disabled||false),validator:Lang.isBoolean,method:this._setDisabled});this.setAttributeConfig("href",{value:oAttributes.href,validator:Lang.isString,method:this._setHref});this.setAttributeConfig("target",{value:oAttributes.target,validator:Lang.isString,method:this._setTarget});this.setAttributeConfig("checked",{value:(oAttributes.checked||false),validator:Lang.isBoolean,method:this._setChecked});this.setAttributeConfig("container",{value:oAttributes.container,writeOnce:true});this.setAttributeConfig("srcelement",{value:oAttributes.srcelement,writeOnce:true});this.setAttributeConfig("menu",{value:null,method:this._setMenu,writeOnce:true});this.setAttributeConfig("lazyloadmenu",{value:(oAttributes.lazyloadmenu===false?false:true),validator:Lang.isBoolean,writeOnce:true});this.setAttributeConfig("menuclassname",{value:(oAttributes.menuclassname||"yui-button-menu"),validator:Lang.isString,method
[all...]
H A Dbutton-beta.js102 * @method createInputElement
170 * @method setAttributesFromSrcElement
195 * @method setAttributeFromDOMAttribute
230 * @method setFormElementProperties
337 * @method initConfig
772 * @method _setType
790 * @method _setLabel
804 * @method _setTabIndex
818 * @method _setTitle
876 * @method _setDisable
[all...]
/forgerock/openam/openam-server-only/src/main/webapp/assets/lib/yui/button/
H A Dbutton-beta-debug.js102 * @method createInputElement
170 * @method setAttributesFromSrcElement
195 * @method setAttributeFromDOMAttribute
233 * @method setFormElementProperties
340 * @method initConfig
797 * @method _setType
815 * @method _setLabel
829 * @method _setTabIndex
843 * @method _setTitle
901 * @method _setDisable
[all...]
H A Dbutton-beta-min.js126 else if(this.get("type")!="link"&&bElInDoc&&oSrcElement&&oSrcElement==oElement){this._addListenersToForm();}},initAttributes:function(p_oAttributes){var oAttributes=p_oAttributes||{};YAHOO.widget.Button.superclass.initAttributes.call(this,oAttributes);this.setAttributeConfig("type",{value:(oAttributes.type||"push"),validator:Lang.isString,writeOnce:true,method:this._setType});this.setAttributeConfig("label",{value:oAttributes.label,validator:Lang.isString,method:this._setLabel});this.setAttributeConfig("value",{value:oAttributes.value});this.setAttributeConfig("name",{value:oAttributes.name,validator:Lang.isString});this.setAttributeConfig("tabindex",{value:oAttributes.tabindex,validator:Lang.isNumber,method:this._setTabIndex});this.configureAttribute("title",{value:oAttributes.title,validator:Lang.isString,method:this._setTitle});this.setAttributeConfig("disabled",{value:(oAttributes.disabled||false),validator:Lang.isBoolean,method:this._setDisabled});this.setAttributeConfig("href",{value:oAttributes.href,validator:Lang.isString,method:this._setHref});this.setAttributeConfig("target",{value:oAttributes.target,validator:Lang.isString,method:this._setTarget});this.setAttributeConfig("checked",{value:(oAttributes.checked||false),validator:Lang.isBoolean,method:this._setChecked});this.setAttributeConfig("container",{value:oAttributes.container,writeOnce:true});this.setAttributeConfig("srcelement",{value:oAttributes.srcelement,writeOnce:true});this.setAttributeConfig("menu",{value:null,method:this._setMenu,writeOnce:true});this.setAttributeConfig("lazyloadmenu",{value:(oAttributes.lazyloadmenu===false?false:true),validator:Lang.isBoolean,writeOnce:true});this.setAttributeConfig("menuclassname",{value:(oAttributes.menuclassname||"yui-button-menu"),validator:Lang.isString,method
[all...]
H A Dbutton-beta.js102 * @method createInputElement
170 * @method setAttributesFromSrcElement
195 * @method setAttributeFromDOMAttribute
230 * @method setFormElementProperties
337 * @method initConfig
772 * @method _setType
790 * @method _setLabel
804 * @method _setTabIndex
818 * @method _setTitle
876 * @method _setDisable
[all...]
/forgerock/openam-v13/openam-shared/src/main/java/com/sun/identity/shared/encode/
H A DCookieUtils.java88 Method method = null;
90 method = Cookie.class.getMethod("setHttpOnly", boolean.class);
94 setHttpOnlyMethod = method;
250 * This method creates Map from the name values of cookies
/forgerock/openam/openam-shared/src/main/java/com/sun/identity/shared/encode/
H A DCookieUtils.java91 Method method = null;
93 method = Cookie.class.getMethod("setHttpOnly", boolean.class);
97 setHttpOnlyMethod = method;
253 * This method creates Map from the name values of cookies
/forgerock/opendj-b2.6/src/server/org/opends/server/core/
H A DConnectionHandlerConfigManager.java435 // Determine the initialization method to use: it must take a
438 Method method = theClass.getMethod("initializeConnectionHandler", config
441 method.invoke(connectionHandler, config);
498 // Determine the initialization method to use: it must take a
501 Method method = theClass.getMethod("isConfigurationAcceptable",
504 Boolean acceptable = (Boolean) method.invoke(connectionHandler, config,
H A DMatchingRuleConfigManager.java614 Method method = factory.getClass().getMethod(
616 method.invoke(factory, configuration);
620 Method method =
626 Boolean acceptable = (Boolean) method.invoke(factory,

Completed in 119 milliseconds

<<11121314151617181920>>