/forgerock/opendj-b2.6/src/guitools/org/opends/guitools/controlpanel/ui/ |
H A D | AddToGroupPanel.java | 68 * The dialog that is displayed when we want to add entries to a set of groups. 75 private JTextArea groups; field in class:AddToGroupPanel 96 * Sets the entries we want to add to groups. 97 * @param dns the DN of the entries we want to add to groups. 130 return groups; 225 groups = Utilities.createTextArea(Message.EMPTY, 8, 40); 226 JScrollPane scrollGroups = Utilities.createScrollPane(groups); 300 sb.append(groups.getText()); 309 groups.setText(sb.toString()); 310 groups [all...] |
/forgerock/opendj2/src/guitools/org/opends/guitools/controlpanel/ui/ |
H A D | AddToGroupPanel.java | 69 * The dialog that is displayed when we want to add entries to a set of groups. 76 private JTextArea groups; field in class:AddToGroupPanel 97 * Sets the entries we want to add to groups. 98 * @param dns the DN of the entries we want to add to groups. 131 return groups; 226 groups = Utilities.createTextArea(Message.EMPTY, 8, 40); 227 JScrollPane scrollGroups = Utilities.createScrollPane(groups); 301 sb.append(groups.getText()); 310 groups.setText(sb.toString()); 311 groups [all...] |
/forgerock/opendj2.6.2/src/guitools/org/opends/guitools/controlpanel/ui/ |
H A D | AddToGroupPanel.java | 68 * The dialog that is displayed when we want to add entries to a set of groups. 75 private JTextArea groups; field in class:AddToGroupPanel 96 * Sets the entries we want to add to groups. 97 * @param dns the DN of the entries we want to add to groups. 130 return groups; 225 groups = Utilities.createTextArea(Message.EMPTY, 8, 40); 226 JScrollPane scrollGroups = Utilities.createScrollPane(groups); 300 sb.append(groups.getText()); 309 groups.setText(sb.toString()); 310 groups [all...] |
/forgerock/opendj2-hg/src/guitools/org/opends/guitools/controlpanel/ui/ |
H A D | AddToGroupPanel.java | 69 * The dialog that is displayed when we want to add entries to a set of groups. 76 private JTextArea groups; field in class:AddToGroupPanel 97 * Sets the entries we want to add to groups. 98 * @param dns the DN of the entries we want to add to groups. 131 return groups; 226 groups = Utilities.createTextArea(Message.EMPTY, 8, 40); 227 JScrollPane scrollGroups = Utilities.createScrollPane(groups); 301 sb.append(groups.getText()); 310 groups.setText(sb.toString()); 311 groups [all...] |
/forgerock/opendj2-jel-hg/src/guitools/org/opends/guitools/controlpanel/ui/ |
H A D | AddToGroupPanel.java | 68 * The dialog that is displayed when we want to add entries to a set of groups. 75 private JTextArea groups; field in class:AddToGroupPanel 96 * Sets the entries we want to add to groups. 97 * @param dns the DN of the entries we want to add to groups. 130 return groups; 225 groups = Utilities.createTextArea(Message.EMPTY, 8, 40); 226 JScrollPane scrollGroups = Utilities.createScrollPane(groups); 300 sb.append(groups.getText()); 309 groups.setText(sb.toString()); 310 groups [all...] |
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/ |
H A D | AddToGroupPanel.java | 69 * The dialog that is displayed when we want to add entries to a set of groups. 76 private JTextArea groups; field in class:AddToGroupPanel 97 * Sets the entries we want to add to groups. 98 * @param dns the DN of the entries we want to add to groups. 129 return groups; 214 groups = Utilities.createTextArea(LocalizableMessage.EMPTY, 8, 40); 215 JScrollPane scrollGroups = Utilities.createScrollPane(groups); 277 sb.append(groups.getText()); 286 groups.setText(sb.toString()); 287 groups [all...] |
/forgerock/openidm-v4/openidm-authnfilter/src/main/java/org/forgerock/openidm/auth/modules/ |
H A D | MappingRoleCalculator.java | 45 * @param roleMapping The mapping between OpenIDM roles and pass-through auth groups. 76 final List<String> groups = entry.getValue(); 77 if (isMemberOfRoleGroups(groups, userGroups)) { 93 private boolean isMemberOfRoleGroups(List<String> groups, List<String> groupMembership) { argument 94 for (String group : groups) { 106 * group matches one of the groups that have been specified to map to a particular 135 * Compare two groups for fuzzy equality.
|
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/utils/ |
H A D | RecoveryCodeGenerator.java | 97 * size of each of the supplied {@code groups}, with a {@code delimiter} between them. 100 * @param groups The groupings of characters. For example, {@code {4, 4}} will produce two sets 103 * @param delimiter The character to use between each of the groups. 107 public String generateDelimitedCode(CodeGeneratorSource alphabet, char delimiter, int... groups) { argument 108 Reject.ifNull(groups); 109 Reject.ifTrue(groups.length < 1); 114 for (int group : groups) { 128 * size of each of the supplied {@code groups}, with a {@code delimiter} between them. 134 * @param groups The groupings of characters. For example, {@code {4, 4}} will produce two sets 137 * @param delimiter The character to use between each of the groups 142 generateDelimitedCodeWithSpecifics(CodeGeneratorSource alphabet, char delimiter, Map<Integer, Character> specifics, int... groups) argument 227 generateDelimitedCodes(int numCodes, CodeGeneratorSource alphabet, char delimiter, boolean allowDuplicates, int... groups) argument 275 generateDelimitedCodesWithSpecifics(int numCodes, CodeGeneratorSource alphabet, char delimiter, Map<Integer, Character> specifics, boolean allowDuplicates, int... groups) argument [all...] |
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/am/sdk/ |
H A D | AMGroup.java | 68 * Returns the distinguished name of users and nested groups in the group. 70 * @return The distinguished name of users and nested groups in the group. 81 * effectively make the groups <code>members</code> of this group. And any 82 * ACIs set for this group will be inherited by the nested groups and their 85 * @param groups 94 public void addNestedGroups(Set groups) throws AMException, SSOException; argument 152 * Creates static groups in this group. 155 * The set of static groups' names to be created in this group. 167 * Creates static groups and initializes their attributes. 169 * @param groups 179 createStaticGroups(Map groups) argument 208 createDynamicGroups(Map groups) argument 239 createAssignableDynamicGroups(Map groups) argument 281 removeNestedGroups(Set groups) argument [all...] |
H A D | AMGroupContainer.java | 185 * Creates static groups in this group container. 188 * The set of static groups' names to be created in this group 204 * Creates static groups and initializes their attributes. 206 * @param groups 219 public Set createStaticGroups(Map groups) throws AMException, SSOException; argument 249 * Creates dynamic groups in this group container. 252 * The set of dynamic groups' names to be created in this group 265 * Creates dynamic groups and initializes their attributes. 267 * @param groups 276 public Set createDynamicGroups(Map groups) throw argument 334 createAssignableDynamicGroups(Map groups) argument [all...] |
H A D | AMGroupImpl.java | 279 * Creates static groups in this group. 282 * The set of static groups' names to be created in this group. 292 Set groups = new HashSet(); 300 groups.add(groupImpl); 303 return groups; 307 * Creates static groups and initializes their attributes. 322 Set groups = new HashSet(); 334 groups.add(groupImpl); 337 return groups; 341 * Creates dynamic groups i 642 addNestedGroups(Set groups) argument 685 removeNestedGroups(Set groups) argument [all...] |
H A D | AMOrganizationalUnit.java | 827 * Creates assignable dynamic groups. 830 * The set of assignable dynamic groups's names to be created. 842 * Deletes assignable dynamic groups. 845 * The set of assignable dynamic groups's DNs to be deleted. 857 * Returns the assignable dynamic groups within the specified level. 873 * Gets number of assignable dynamic groups within the specified level. 877 * @return Number of assignable dynamic groups within the specified level. 888 * Searches for assignable dynamic groups in this organizational unit using 897 * @return Set Set of DNs of assignable dynamic groups matching the search 909 * Searches for assignable dynamic groups i 1139 createStaticGroups(Set groups) argument 1153 deleteStaticGroups(Set groups) argument [all...] |
H A D | AMOrganization.java | 867 * Creates assignable dynamic groups. 870 * The set of assignable dynamic groups's names to be created. 904 * Deletes assignable dynamic groups. 907 * The set of assignable dynamic groups's DNs to be deleted. 919 * Returns the assignable dynamic groups within the specified level. 935 * Gets number of assignable dynamic groups within the specified level. 939 * @return Number of assignable dynamic groups within the specified level. 950 * Searches for assignable dynamic groups in this organization using 960 * @return Set Set of DNs of assignable dynamic groups matching the search 972 * Searches for assignable dynamic groups i 1342 createStaticGroups(Set groups) argument 1380 deleteStaticGroups(Set groups) argument [all...] |
/forgerock/openam/openam-core/src/main/java/com/iplanet/am/sdk/ |
H A D | AMGroup.java | 68 * Returns the distinguished name of users and nested groups in the group. 70 * @return The distinguished name of users and nested groups in the group. 81 * effectively make the groups <code>members</code> of this group. And any 82 * ACIs set for this group will be inherited by the nested groups and their 85 * @param groups 94 public void addNestedGroups(Set groups) throws AMException, SSOException; argument 152 * Creates static groups in this group. 155 * The set of static groups' names to be created in this group. 167 * Creates static groups and initializes their attributes. 169 * @param groups 179 createStaticGroups(Map groups) argument 208 createDynamicGroups(Map groups) argument 239 createAssignableDynamicGroups(Map groups) argument 281 removeNestedGroups(Set groups) argument [all...] |
H A D | AMGroupContainer.java | 185 * Creates static groups in this group container. 188 * The set of static groups' names to be created in this group 204 * Creates static groups and initializes their attributes. 206 * @param groups 219 public Set createStaticGroups(Map groups) throws AMException, SSOException; argument 249 * Creates dynamic groups in this group container. 252 * The set of dynamic groups' names to be created in this group 265 * Creates dynamic groups and initializes their attributes. 267 * @param groups 276 public Set createDynamicGroups(Map groups) throw argument 334 createAssignableDynamicGroups(Map groups) argument [all...] |
H A D | AMGroupImpl.java | 279 * Creates static groups in this group. 282 * The set of static groups' names to be created in this group. 292 Set groups = new HashSet(); 300 groups.add(groupImpl); 303 return groups; 307 * Creates static groups and initializes their attributes. 322 Set groups = new HashSet(); 334 groups.add(groupImpl); 337 return groups; 341 * Creates dynamic groups i 642 addNestedGroups(Set groups) argument 685 removeNestedGroups(Set groups) argument [all...] |
H A D | AMOrganizationalUnit.java | 827 * Creates assignable dynamic groups. 830 * The set of assignable dynamic groups's names to be created. 842 * Deletes assignable dynamic groups. 845 * The set of assignable dynamic groups's DNs to be deleted. 857 * Returns the assignable dynamic groups within the specified level. 873 * Gets number of assignable dynamic groups within the specified level. 877 * @return Number of assignable dynamic groups within the specified level. 888 * Searches for assignable dynamic groups in this organizational unit using 897 * @return Set Set of DNs of assignable dynamic groups matching the search 909 * Searches for assignable dynamic groups i 1139 createStaticGroups(Set groups) argument 1153 deleteStaticGroups(Set groups) argument [all...] |
H A D | AMOrganization.java | 867 * Creates assignable dynamic groups. 870 * The set of assignable dynamic groups's names to be created. 904 * Deletes assignable dynamic groups. 907 * The set of assignable dynamic groups's DNs to be deleted. 919 * Returns the assignable dynamic groups within the specified level. 935 * Gets number of assignable dynamic groups within the specified level. 939 * @return Number of assignable dynamic groups within the specified level. 950 * Searches for assignable dynamic groups in this organization using 960 * @return Set Set of DNs of assignable dynamic groups matching the search 972 * Searches for assignable dynamic groups i 1342 createStaticGroups(Set groups) argument 1380 deleteStaticGroups(Set groups) argument [all...] |
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/sm/ |
H A D | ServiceConfigManagerImpl.java | 82 private CachedSubEntries groups; field in class:ServiceConfigManagerImpl 146 if (groups == null) { 149 groups = CachedSubEntries.getInstance(t, dn); 151 return (groups.getSubEntries(t)); 360 if (groups == null) { 363 groups = CachedSubEntries.getInstance(token, dn); 365 return (groups.contains(token, groupName));
|
/forgerock/openam/openam-core/src/main/java/com/sun/identity/sm/ |
H A D | ServiceConfigManagerImpl.java | 82 private CachedSubEntries groups; field in class:ServiceConfigManagerImpl 146 if (groups == null) { 149 groups = CachedSubEntries.getInstance(t, dn); 151 return (groups.getSubEntries(t)); 360 if (groups == null) { 363 groups = CachedSubEntries.getInstance(token, dn); 365 return (groups.contains(token, groupName));
|
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/services/ldap/aci/ |
H A D | ACI.java | 391 * Sets the collection of groups to whom the ACI apllies 393 * @param groups 394 * the collection of groups to whom the ACI apllies 398 public void setGroups(Collection groups) { argument 399 _groups = groups; 403 * Gets the collection of groups to whom the ACI apllies 405 * @return the collection of groups to whom the ACI apllies
|
/forgerock/openam/openam-core/src/main/java/com/iplanet/services/ldap/aci/ |
H A D | ACI.java | 391 * Sets the collection of groups to whom the ACI apllies 393 * @param groups 394 * the collection of groups to whom the ACI apllies 398 public void setGroups(Collection groups) { argument 399 _groups = groups; 403 * Gets the collection of groups to whom the ACI apllies 405 * @return the collection of groups to whom the ACI apllies
|
/forgerock/openam-v13/openam-server-only/src/main/webapp/assets/lib/yui/dragdrop/ |
H A D | dragdrop-debug.js | 392 for (var g in oDD.groups) { 431 * Returns the drag and drop instances that are in all groups the 441 for (var i in p_oDD.groups) { 765 for (var sGroup in dc.groups) { 953 * YAHOO.util.DragDropMgr.refreshCache(ddinstance.groups); 962 * @param {Object} groups an associative array of groups to refresh 965 refreshCache: function(groups) { 969 var g = groups || this.ids; 1593 * groups usin [all...] |
H A D | dragdrop-min.js | 12 var obj=this.ids[sGroup];if(obj&&obj[oDD.id]){delete obj[oDD.id];}},_remove:function(oDD){for(var g in oDD.groups){if(g&&this.ids[g][oDD.id]){delete this.ids[g][oDD.id];}} 14 this.handleIds[sDDId][sHandleId]=sHandleId;},isDragDrop:function(id){return(this.getDDById(id))?true:false;},getRelated:function(p_oDD,bTargetsOnly){var oDDs=[];for(var i in p_oDD.groups){for(j in this.ids[i]){var dd=this.ids[i][j];if(!this.isTypeOfDD(dd)){continue;} 32 for(var sGroup in dc.groups){if("string"!=typeof sGroup){continue;} 49 return winner;},refreshCache:function(groups){var g=groups||this.ids;for(var sGroup in g){if("string"!=typeof sGroup){continue;} 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);} 65 return this._domRef;},getDragEl:function(){return Dom.get(this.dragElId);},init:function(id,sGroup,config){this.initTarget(id,sGroup,config);Event.on(this._domRef||this.id,"mousedown",this.handleMouseDown,this,true);},initTarget:function(id,sGroup,config){this.config=config||{};this.DDM=YAHOO.util.DDM;this.groups={};if(typeof id!=="string"){this._domRef=id;id=Dom.generateId(id);} 67 var dx=diffX||0;var dy=diffY||0;var p=Dom.getXY(el);this.initPageX=p[0]-dx;this.initPageY=p[1]-dy;this.lastPageX=p[0];this.lastPageY=p[1];this.setStartPosition(p);},setStartPosition:function(pos){var p=pos||Dom.getXY(this.getEl());this.deltaSetXY=null;this.startPageX=p[0];this.startPageY=p[1];},addToGroup:function(sGroup){this.groups[sGroup]=true;this.DDM.regDragDrop(this,sGroup);},removeFromGroup:function(sGroup){if(this.groups[sGroup]){delete this.groups[sGrou [all...] |
H A D | dragdrop.js | 390 for (var g in oDD.groups) { 428 * Returns the drag and drop instances that are in all groups the 438 for (var i in p_oDD.groups) { 750 for (var sGroup in dc.groups) { 928 * YAHOO.util.DragDropMgr.refreshCache(ddinstance.groups); 937 * @param {Object} groups an associative array of groups to refresh 940 refreshCache: function(groups) { 943 var g = groups || this.ids; 1551 * groups usin [all...] |