Searched refs:locked (Results 1 - 25 of 61) sorted by relevance

123

/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/common/
H A DAccountLockoutInfo.java42 private boolean locked = false; field in class:AccountLockoutInfo
78 * Returns the actual time the user needs be locked out.
80 * @return the actual time the user needs be locked out.
87 * Returns true if user was locked out
89 * @return true if user was locked out
92 return locked;
136 * @param locked
139 public void setLockout(boolean locked) { argument
140 this.locked = locked;
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/common/
H A DAccountLockoutInfo.java42 private boolean locked = false; field in class:AccountLockoutInfo
78 * Returns the actual time the user needs be locked out.
80 * @return the actual time the user needs be locked out.
87 * Returns true if user was locked out
89 * @return true if user was locked out
92 return locked;
136 * @param locked
139 public void setLockout(boolean locked) { argument
140 this.locked = locked;
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/password/ui/model/
H A DPWResetAccountLockout.java75 * hash map if user is physically locked out.
89 // if user is physically locked out then remove it from the map.
123 * Returns true if the user is locked out from resetting password.
126 * @return true if the user is locked out
129 boolean locked = false;
134 locked = isAccountLockout.isLockedOut(acInfo);
135 if (!locked) {
140 return locked;
/forgerock/openam/openam-core/src/main/java/com/sun/identity/password/ui/model/
H A DPWResetAccountLockout.java75 * hash map if user is physically locked out.
89 // if user is physically locked out then remove it from the map.
123 * Returns true if the user is locked out from resetting password.
126 * @return true if the user is locked out
129 boolean locked = false;
134 locked = isAccountLockout.isLockedOut(acInfo);
135 if (!locked) {
140 return locked;
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/service/
H A DAMAccountLockout.java224 * Checks if the account is locked out and needs to be unlocked. this is for memory locking. If duration has passed
227 * @return <code>true</code> if account is locked.
230 // has this user been locked out.
236 * Checks if the account is locked out and needs to be unlocked. this is for memory locking. If duration has passed
240 * @return <code>true</code> if account is locked.
243 // has this user been locked out.
245 boolean locked = false;
248 locked = isMemoryLockout(normUserDN);
255 return locked;
259 boolean locked
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/authentication/service/
H A DAMAccountLockout.java226 * Checks if the account is locked out and needs to be unlocked. this is for memory locking. If duration has passed
229 * @return <code>true</code> if account is locked.
232 // has this user been locked out.
238 * Checks if the account is locked out and needs to be unlocked. this is for memory locking. If duration has passed
242 * @return <code>true</code> if account is locked.
245 // has this user been locked out.
247 boolean locked = false;
250 locked = isMemoryLockout(normUserDN);
257 return locked;
261 boolean locked
[all...]
/forgerock/openam-v13/openam-core/src/test/java/org/forgerock/openam/sm/datalayer/impl/
H A DPooledTaskExecutorTest.java149 private AtomicBoolean locked = new AtomicBoolean(false); field in class:PooledTaskExecutorTest.LongTask
156 locked.set(true);
157 while (!locked.compareAndSet(false, true)) {
158 debug("Task still locked - parking thread");
170 locked.set(false);
/forgerock/openam/openam-core/src/test/java/org/forgerock/openam/sm/datalayer/impl/
H A DPooledTaskExecutorTest.java150 private AtomicBoolean locked = new AtomicBoolean(false); field in class:PooledTaskExecutorTest.LongTask
157 locked.set(true);
158 while (!locked.compareAndSet(false, true)) {
159 debug("Task still locked - parking thread");
171 locked.set(false);
/forgerock/openam-v13/openam-server-only/src/main/webapp/assets/lib/yui/dragdrop/
H A Ddragdrop-debug.js127 * @property locked
131 locked: false,
257 lock: function() { this.locked = true; },
264 unlock: function() { this.locked = false; },
267 * Is drag and drop locked?
269 * @return {boolean} True if drag and drop is locked, false otherwise.
272 isLocked: function() { return this.locked; },
1600 * Individual drag/drop instances can be locked. This will prevent
1602 * @property locked
1606 locked
[all...]
H A Ddragdrop-min.js8 if(!YAHOO.util.DragDropMgr){YAHOO.util.DragDropMgr=function(){var Event=YAHOO.util.Event;return{ids:{},handleIds:{},dragCurrent:null,dragOvers:{},deltaX:0,deltaY:0,preventDefault:true,stopPropagation:true,initialized:false,locked:false,interactionInfo:null,init:function(){this.initialized=true;},POINT:0,INTERSECT:1,STRICT_INTERSECT:2,mode:0,_execOnAll:function(sMethod,args){for(var i in this.ids){for(var j in this.ids[i]){var oDD=this.ids[i][j];if(!this.isTypeOfDD(oDD)){continue;}
9 oDD[sMethod].apply(oDD,args);}}},_onLoad:function(){this.init();Event.on(document,"mouseup",this.handleMouseUp,this,true);Event.on(document,"mousemove",this.handleMouseMove,this,true);Event.on(window,"unload",this._onUnload,this,true);Event.on(window,"resize",this._onResize,this,true);},_onResize:function(e){this._execOnAll("resetConstraints",[]);},lock:function(){this.locked=true;},unlock:function(){this.locked=false;},isLocked:function(){return this.locked;},locationCache:{},useCache:true,clickPixelThresh:3,clickTimeThresh:1000,dragThreshMet:false,clickTimeout:null,startX:0,startY:0,regDragDrop:function(oDD,sGroup){if(!this.initialized){this.init();}
64 (function(){var Event=YAHOO.util.Event;var Dom=YAHOO.util.Dom;YAHOO.util.DragDrop=function(id,sGroup,config){if(id){this.init(id,sGroup,config);}};YAHOO.util.DragDrop.prototype={id:null,config:null,dragElId:null,handleElId:null,invalidHandleTypes:null,invalidHandleIds:null,invalidHandleClasses:null,startPageX:0,startPageY:0,groups:null,locked:false,lock:function(){this.locked=true;},unlock:function(){this.locked=false;},isTarget:true,padding:null,_domRef:null,__ygDragDrop:true,constrainX:false,constrainY:false,minX:0,maxX:0,minY:0,maxY:0,deltaX:0,deltaY:0,maintainOffset:false,xTicks:null,yTicks:null,primaryButtonOnly:true,available:false,hasOuterHandles:false,cursorIsOver:false,overlap:null,b4StartDrag:function(x,y){},startDrag:function(x,y){},b4Drag:function(e){},onDrag:function(e){},onDragEnter:function(e,id){},b4DragOver:function(e){},onDragOver:function(e,id){},b4DragOut:function(e){},onDragOut:function(e,id){},b4DragDrop:function(e){},onDragDrop:function(e,id){},onInvalidDrop:function(e){},b4EndDrag:function(e){},endDrag:function(e){},b4MouseDown:function(e){},onMouseDown:function(e){},onMouseUp:function(e){},onAvailable:function(){},getEl:function(){if(!this._domRef){this._domRef=Dom.get(this.id);}
70 Event.on(id,"mousedown",this.handleMouseDown,this,true);this.setHandleElId(id);this.hasOuterHandles=true;},unreg:function(){Event.removeListener(this.id,"mousedown",this.handleMouseDown);this._domRef=null;this.DDM._remove(this);},isLocked:function(){return(this.DDM.isLocked()||this.locked);},handleMouseDown:function(e,oDD){var button=e.which||e.button;if(this.primaryButtonOnly&&button>1){return;}
H A Ddragdrop.js127 * @property locked
131 locked: false,
255 lock: function() { this.locked = true; },
262 unlock: function() { this.locked = false; },
265 * Is drag and drop locked?
267 * @return {boolean} True if drag and drop is locked, false otherwise.
270 isLocked: function() { return this.locked; },
1558 * Individual drag/drop instances can be locked. This will prevent
1560 * @property locked
1564 locked
[all...]
/forgerock/openam/openam-server-only/src/main/webapp/assets/lib/yui/dragdrop/
H A Ddragdrop-debug.js127 * @property locked
131 locked: false,
257 lock: function() { this.locked = true; },
264 unlock: function() { this.locked = false; },
267 * Is drag and drop locked?
269 * @return {boolean} True if drag and drop is locked, false otherwise.
272 isLocked: function() { return this.locked; },
1600 * Individual drag/drop instances can be locked. This will prevent
1602 * @property locked
1606 locked
[all...]
H A Ddragdrop-min.js8 if(!YAHOO.util.DragDropMgr){YAHOO.util.DragDropMgr=function(){var Event=YAHOO.util.Event;return{ids:{},handleIds:{},dragCurrent:null,dragOvers:{},deltaX:0,deltaY:0,preventDefault:true,stopPropagation:true,initialized:false,locked:false,interactionInfo:null,init:function(){this.initialized=true;},POINT:0,INTERSECT:1,STRICT_INTERSECT:2,mode:0,_execOnAll:function(sMethod,args){for(var i in this.ids){for(var j in this.ids[i]){var oDD=this.ids[i][j];if(!this.isTypeOfDD(oDD)){continue;}
9 oDD[sMethod].apply(oDD,args);}}},_onLoad:function(){this.init();Event.on(document,"mouseup",this.handleMouseUp,this,true);Event.on(document,"mousemove",this.handleMouseMove,this,true);Event.on(window,"unload",this._onUnload,this,true);Event.on(window,"resize",this._onResize,this,true);},_onResize:function(e){this._execOnAll("resetConstraints",[]);},lock:function(){this.locked=true;},unlock:function(){this.locked=false;},isLocked:function(){return this.locked;},locationCache:{},useCache:true,clickPixelThresh:3,clickTimeThresh:1000,dragThreshMet:false,clickTimeout:null,startX:0,startY:0,regDragDrop:function(oDD,sGroup){if(!this.initialized){this.init();}
64 (function(){var Event=YAHOO.util.Event;var Dom=YAHOO.util.Dom;YAHOO.util.DragDrop=function(id,sGroup,config){if(id){this.init(id,sGroup,config);}};YAHOO.util.DragDrop.prototype={id:null,config:null,dragElId:null,handleElId:null,invalidHandleTypes:null,invalidHandleIds:null,invalidHandleClasses:null,startPageX:0,startPageY:0,groups:null,locked:false,lock:function(){this.locked=true;},unlock:function(){this.locked=false;},isTarget:true,padding:null,_domRef:null,__ygDragDrop:true,constrainX:false,constrainY:false,minX:0,maxX:0,minY:0,maxY:0,deltaX:0,deltaY:0,maintainOffset:false,xTicks:null,yTicks:null,primaryButtonOnly:true,available:false,hasOuterHandles:false,cursorIsOver:false,overlap:null,b4StartDrag:function(x,y){},startDrag:function(x,y){},b4Drag:function(e){},onDrag:function(e){},onDragEnter:function(e,id){},b4DragOver:function(e){},onDragOver:function(e,id){},b4DragOut:function(e){},onDragOut:function(e,id){},b4DragDrop:function(e){},onDragDrop:function(e,id){},onInvalidDrop:function(e){},b4EndDrag:function(e){},endDrag:function(e){},b4MouseDown:function(e){},onMouseDown:function(e){},onMouseUp:function(e){},onAvailable:function(){},getEl:function(){if(!this._domRef){this._domRef=Dom.get(this.id);}
70 Event.on(id,"mousedown",this.handleMouseDown,this,true);this.setHandleElId(id);this.hasOuterHandles=true;},unreg:function(){Event.removeListener(this.id,"mousedown",this.handleMouseDown);this._domRef=null;this.DDM._remove(this);},isLocked:function(){return(this.DDM.isLocked()||this.locked);},handleMouseDown:function(e,oDD){var button=e.which||e.button;if(this.primaryButtonOnly&&button>1){return;}
H A Ddragdrop.js127 * @property locked
131 locked: false,
255 lock: function() { this.locked = true; },
262 unlock: function() { this.locked = false; },
265 * Is drag and drop locked?
267 * @return {boolean} True if drag and drop is locked, false otherwise.
270 isLocked: function() { return this.locked; },
1558 * Individual drag/drop instances can be locked. This will prevent
1560 * @property locked
1564 locked
[all...]
/forgerock/openam-v13/openam-server-only/src/main/webapp/assets/lib/yui/treeview/
H A Dtreeview-debug.js57 * @property locked
60 locked: false,
129 // this.locked = true;
160 // this.locked = true;
190 // this.locked = false;
204 // this.locked = false;
363 if (!this.locked) {
373 if (!this.locked) {
1513 if (!this.tree.locked && ( this.hasChildren(true) || this.isDynamic()) ) {
1584 this.tree.locked
[all...]
H A Dtreeview-min.js8 YAHOO.widget.TreeView=function(id){if(id){this.init(id);}};YAHOO.widget.TreeView.prototype={id:null,_el:null,_nodes:null,locked:false,_expandAnim:null,_collapseAnim:null,_animCount:0,maxAnim:2,setExpandAnim:function(type){if(YAHOO.widget.TVAnim.isValid(type)){this._expandAnim=type;}},setCollapseAnim:function(type){if(YAHOO.widget.TVAnim.isValid(type)){this._collapseAnim=type;}},animateExpand:function(el,node){if(this._expandAnim&&this._animCount<this.maxAnim){var tree=this;var a=YAHOO.widget.TVAnim.getAnim(this._expandAnim,el,function(){tree.expandComplete(node);});if(a){++this._animCount;this.fireEvent("animStart",{"node":node,"type":"expand"});a.animate();}
14 return this._el;},regNode:function(node){this._nodes[node.index]=node;},getRoot:function(){return this.root;},setDynamicLoad:function(fnDataLoader,iconMode){this.root.setDynamicLoad(fnDataLoader,iconMode);},expandAll:function(){if(!this.locked){this.root.expandAll();}},collapseAll:function(){if(!this.locked){this.root.collapseAll();}},getNodeByIndex:function(nodeIndex){var n=this._nodes[nodeIndex];return(n)?n:null;},getNodeByProperty:function(property,value){for(var i in this._nodes){var n=this._nodes[i];if(n.data&&value==n.data[property]){return n;}}
52 if(iconMode){this.iconMode=iconMode;}},isRoot:function(){return(this==this.tree.root);},isDynamic:function(){var lazy=(!this.isRoot()&&(this._dynLoad||this.tree.root._dynLoad));return lazy;},getIconMode:function(){return(this.iconMode||this.tree.root.iconMode);},hasChildren:function(checkForLazyLoad){return(this.children.length>0||(checkForLazyLoad&&this.isDynamic()&&!this.dynamicLoadComplete));},toggle:function(){if(!this.tree.locked&&(this.hasChildren(true)||this.isDynamic())){if(this.expanded){this.collapse();}else{this.expand();}}},getHtml:function(){this.childrenRendered=false;var sb=[];sb[sb.length]='<div class="ygtvitem" id="'+this.getElId()+'">';sb[sb.length]=this.getNodeHtml();sb[sb.length]=this.getChildrenHtml();sb[sb.length]='</div>';return sb.join("");},getChildrenHtml:function(){var sb=[];sb[sb.length]='<div class="ygtvchildren"';sb[sb.length]=' id="'+this.getChildrenElId()+'"';if(!this.expanded||!this.hasChildren()){sb[sb.length]=' style="display:none;"';}
54 sb[sb.length]='</div>';return sb.join("");},renderChildren:function(){var node=this;if(this.isDynamic()&&!this.dynamicLoadComplete){this.isLoading=true;this.tree.locked=true;if(this.dataLoader){setTimeout(function(){node.dataLoader(node,function(){node.loadComplete();});},10);}else if(this.tree.root.dataLoader){setTimeout(function(){node.tree.root.dataLoader(node,function(){node.loadComplete();});},10);}else{return"Error: data loader not found or not specified.";}
56 this.childrenRendered=true;return sb.join("");},loadComplete:function(){this.getChildrenEl().innerHTML=this.completeRender();this.dynamicLoadComplete=true;this.isLoading=false;this.expand();this.tree.locked=false;},getAncestor:function(depth){if(depth>=this.depth||depth<0){return null;}
H A Dtreeview.js57 * @property locked
60 locked: false,
128 // this.locked = true;
158 // this.locked = true;
187 // this.locked = false;
200 // this.locked = false;
357 if (!this.locked) {
367 if (!this.locked) {
1489 if (!this.tree.locked && ( this.hasChildren(true) || this.isDynamic()) ) {
1559 this.tree.locked
[all...]
/forgerock/openam/openam-server-only/src/main/webapp/assets/lib/yui/treeview/
H A Dtreeview-debug.js57 * @property locked
60 locked: false,
129 // this.locked = true;
160 // this.locked = true;
190 // this.locked = false;
204 // this.locked = false;
363 if (!this.locked) {
373 if (!this.locked) {
1513 if (!this.tree.locked && ( this.hasChildren(true) || this.isDynamic()) ) {
1584 this.tree.locked
[all...]
H A Dtreeview-min.js8 YAHOO.widget.TreeView=function(id){if(id){this.init(id);}};YAHOO.widget.TreeView.prototype={id:null,_el:null,_nodes:null,locked:false,_expandAnim:null,_collapseAnim:null,_animCount:0,maxAnim:2,setExpandAnim:function(type){if(YAHOO.widget.TVAnim.isValid(type)){this._expandAnim=type;}},setCollapseAnim:function(type){if(YAHOO.widget.TVAnim.isValid(type)){this._collapseAnim=type;}},animateExpand:function(el,node){if(this._expandAnim&&this._animCount<this.maxAnim){var tree=this;var a=YAHOO.widget.TVAnim.getAnim(this._expandAnim,el,function(){tree.expandComplete(node);});if(a){++this._animCount;this.fireEvent("animStart",{"node":node,"type":"expand"});a.animate();}
14 return this._el;},regNode:function(node){this._nodes[node.index]=node;},getRoot:function(){return this.root;},setDynamicLoad:function(fnDataLoader,iconMode){this.root.setDynamicLoad(fnDataLoader,iconMode);},expandAll:function(){if(!this.locked){this.root.expandAll();}},collapseAll:function(){if(!this.locked){this.root.collapseAll();}},getNodeByIndex:function(nodeIndex){var n=this._nodes[nodeIndex];return(n)?n:null;},getNodeByProperty:function(property,value){for(var i in this._nodes){var n=this._nodes[i];if(n.data&&value==n.data[property]){return n;}}
52 if(iconMode){this.iconMode=iconMode;}},isRoot:function(){return(this==this.tree.root);},isDynamic:function(){var lazy=(!this.isRoot()&&(this._dynLoad||this.tree.root._dynLoad));return lazy;},getIconMode:function(){return(this.iconMode||this.tree.root.iconMode);},hasChildren:function(checkForLazyLoad){return(this.children.length>0||(checkForLazyLoad&&this.isDynamic()&&!this.dynamicLoadComplete));},toggle:function(){if(!this.tree.locked&&(this.hasChildren(true)||this.isDynamic())){if(this.expanded){this.collapse();}else{this.expand();}}},getHtml:function(){this.childrenRendered=false;var sb=[];sb[sb.length]='<div class="ygtvitem" id="'+this.getElId()+'">';sb[sb.length]=this.getNodeHtml();sb[sb.length]=this.getChildrenHtml();sb[sb.length]='</div>';return sb.join("");},getChildrenHtml:function(){var sb=[];sb[sb.length]='<div class="ygtvchildren"';sb[sb.length]=' id="'+this.getChildrenElId()+'"';if(!this.expanded||!this.hasChildren()){sb[sb.length]=' style="display:none;"';}
54 sb[sb.length]='</div>';return sb.join("");},renderChildren:function(){var node=this;if(this.isDynamic()&&!this.dynamicLoadComplete){this.isLoading=true;this.tree.locked=true;if(this.dataLoader){setTimeout(function(){node.dataLoader(node,function(){node.loadComplete();});},10);}else if(this.tree.root.dataLoader){setTimeout(function(){node.tree.root.dataLoader(node,function(){node.loadComplete();});},10);}else{return"Error: data loader not found or not specified.";}
56 this.childrenRendered=true;return sb.join("");},loadComplete:function(){this.getChildrenEl().innerHTML=this.completeRender();this.dynamicLoadComplete=true;this.isLoading=false;this.expand();this.tree.locked=false;},getAncestor:function(depth){if(depth>=this.depth||depth<0){return null;}
H A Dtreeview.js57 * @property locked
60 locked: false,
128 // this.locked = true;
158 // this.locked = true;
187 // this.locked = false;
200 // this.locked = false;
357 if (!this.locked) {
367 if (!this.locked) {
1489 if (!this.tree.locked && ( this.hasChildren(true) || this.isDynamic()) ) {
1559 this.tree.locked
[all...]
/forgerock/openam-v13/openam-server-only/src/main/webapp/assets/lib/yui/slider/
H A Dslider-debug.js458 this.locked = true;
468 this.locked = false;
613 * @param {boolean} force ignore the locked setting and set value anyway
628 this.logger.log("Can't set the value, the control is locked");
666 * @param {boolean} force ignore the locked setting and set value anyway
680 this.logger.log("Can't set the value, the control is locked");
H A Dslider-min.js11 Event.stopEvent(e);}}},setStartSliderState:function(){this.setThumbCenterPoint();this.baselinePos=YAHOO.util.Dom.getXY(this.getEl());this.thumb.startOffset=this.thumb.getOffsetFromParent(this.baselinePos);if(this.thumb._isRegion){if(this.deferredSetRegionValue){this.setRegionValue.apply(this,this.deferredSetRegionValue,true);this.deferredSetRegionValue=null;}else{this.setRegionValue(0,0,true,true);}}else{if(this.deferredSetValue){this.setValue.apply(this,this.deferredSetValue,true);this.deferredSetValue=null;}else{this.setValue(0,true,true);}}},setThumbCenterPoint:function(){var el=this.thumb.getEl();if(el){this.thumbCenterPoint={x:parseInt(el.offsetWidth/2,10),y:parseInt(el.offsetHeight/2,10)};}},lock:function(){this.thumb.lock();this.locked=true;},unlock:function(){this.thumb.unlock();this.locked=false;},thumbMouseUp:function(){if(!this.isLocked()&&!this.moveComplete){this.endMove();}},getThumb:function(){return this.thumb;},focus:function(){this.valueChangeSource=this.SOURCE_UI_EVENT;var el=this.getEl();if(el.focus){try{el.focus();}catch(e){}}
H A Dslider.js454 this.locked = true;
463 this.locked = false;
603 * @param {boolean} force ignore the locked setting and set value anyway
652 * @param {boolean} force ignore the locked setting and set value anyway
/forgerock/openam/openam-server-only/src/main/webapp/assets/lib/yui/slider/
H A Dslider-debug.js458 this.locked = true;
468 this.locked = false;
613 * @param {boolean} force ignore the locked setting and set value anyway
628 this.logger.log("Can't set the value, the control is locked");
666 * @param {boolean} force ignore the locked setting and set value anyway
680 this.logger.log("Can't set the value, the control is locked");
H A Dslider-min.js11 Event.stopEvent(e);}}},setStartSliderState:function(){this.setThumbCenterPoint();this.baselinePos=YAHOO.util.Dom.getXY(this.getEl());this.thumb.startOffset=this.thumb.getOffsetFromParent(this.baselinePos);if(this.thumb._isRegion){if(this.deferredSetRegionValue){this.setRegionValue.apply(this,this.deferredSetRegionValue,true);this.deferredSetRegionValue=null;}else{this.setRegionValue(0,0,true,true);}}else{if(this.deferredSetValue){this.setValue.apply(this,this.deferredSetValue,true);this.deferredSetValue=null;}else{this.setValue(0,true,true);}}},setThumbCenterPoint:function(){var el=this.thumb.getEl();if(el){this.thumbCenterPoint={x:parseInt(el.offsetWidth/2,10),y:parseInt(el.offsetHeight/2,10)};}},lock:function(){this.thumb.lock();this.locked=true;},unlock:function(){this.thumb.unlock();this.locked=false;},thumbMouseUp:function(){if(!this.isLocked()&&!this.moveComplete){this.endMove();}},getThumb:function(){return this.thumb;},focus:function(){this.valueChangeSource=this.SOURCE_UI_EVENT;var el=this.getEl();if(el.focus){try{el.focus();}catch(e){}}

Completed in 84 milliseconds

123