Searched defs:group (Results 1 - 14 of 14) sorted by relevance

/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/node/runtime/
H A DGroupNode.java53 * This node handles the group definition in the runtime DDs
60 Group group=null; field in class:GroupNode
66 return group;
77 group = new Group(attributes.getValue(i));
/glassfish-3.1.2/admin/cli/src/main/java/com/sun/enterprise/admin/cli/
H A DStringEditDistance.java56 * Finds the string in the <code>group</code> closest to
59 * @return null if group.length==0.
61 public static String findNearest(String key, String[] group) { argument
64 for (int i = 0; i < group.length; i++) {
65 int ed = editDistance(key, group[i]);
68 r = group[i];
/glassfish-3.1.2/common/amx-core/src/main/java/org/glassfish/admin/amx/core/
H A DMetaGetters.java92 /** From Descriptor: return the group value */
93 public String group(); method in interface:MetaGetters
/glassfish-3.1.2/security/core/src/main/java/com/sun/enterprise/security/auth/realm/
H A DGroupMapper.java87 public void getMappedGroups(String group, ArrayList<String> result) { argument
91 ArrayList<String> mappedGrps = groupMappingTable.get(group);
99 getMappedGroups(group, str,result1);
138 private void getMappedGroups(String group, String str, ArrayList<String> result) { argument
144 if (mappedGrps.contains(group)) {
145 throw new RuntimeException("Illegal Mapping: cycle detected with group'" + group);
149 getMappedGroups(group, str1,result);
163 throw new RuntimeException("Illegal Mapping: Identity Mapping of group '" + theGroup + "' to '" + theGroup + "'");
H A DRealm.java95 public static final String PARAM_GROUP_MAPPING="group-mapping";
762 protected ArrayList<String> getMappedGroupNames(String group) { argument
765 groupMapper.getMappedGroups(group, result);
813 * @return enumeration of group names (strings)
821 * @param username name of the user in this realm whose group listing
823 * @return enumeration of group names (strings)
/glassfish-3.1.2/persistence/cmp/model/src/main/java/com/sun/jdo/api/persistence/model/mapping/
H A DMappingFieldElement.java62 /** Constant representing the jdo default fetch group.
67 /** Constant representing no fetch group. */
70 /** Constant representing an independent fetch group. All independent
117 //====================== fetch group handling ==========================
119 /** Get the fetch group of this field element.
120 * @return the fetch group, one of {@link #GROUP_DEFAULT},
126 /** Set the fetch group of this field element.
127 * @param group - an integer indicating the fetch group, one of:
132 public void setFetchGroup (int group) throw argument
[all...]
/glassfish-3.1.2/security/core/src/main/java/com/sun/enterprise/security/web/integration/
H A DWebSecurityManagerFactory.java231 public Principal getAdminGroup(String group, String realmName){ argument
232 return (Principal)ADMIN_GROUP.get(realmName+group);
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/tomcat/util/modeler/
H A DManagedBean.java96 protected String group = null; field in class:ManagedBean
187 * The (optional) group to which this MBean belongs.
190 return (this.group);
193 public void setGroup(String group) { argument
194 this.group = group;
528 if (group != null) {
529 sb.append(", group=");
530 sb.append(group);
H A DRegistry.java442 // XXX Use group + name
480 * this registry that belong to the specified group.
482 * @param group Name of the group of interest, or <code>null</code>
483 * to select beans that do <em>not</em> belong to a group
486 public String[] findManagedBeans(String group) { argument
492 if (group == null) {
496 } else if (group.equals(item.getGroup())) {
513 // TODO: change this to use group/name
/glassfish-3.1.2/common/amx-core-impl/src/main/java/org/glassfish/admin/amx/impl/util/
H A DMBeanInfoSupport.java125 final String group = GROUP_OTHER;
138 group,
403 final String group,
416 desc.setField(DESC_GROUP, group);
398 mbeanDescriptor( final boolean immutable, final Class<?> intf, final boolean singleton, final boolean globalSingleton, final String group, final boolean supportsAdoption, final String[] subTypes) argument
/glassfish-3.1.2/persistence/cmp/model/src/main/java/com/sun/jdo/api/persistence/model/jdo/
H A DPersistenceClassElement.java57 1. throw ModelException on add duplicate field or concurrency group (will
383 /** Add the supplied group to the collection of concurrency groups for this
385 * @param group the concurrency group to be added
388 public void addConcurrencyGroup (ConcurrencyGroupElement group) argument
391 addConcurrencyGroups(new ConcurrencyGroupElement[]{group});
405 /** Remove the supplied group from the collection of concurrency groups for
407 * @param group the concurrency group to be removed
410 public void removeConcurrencyGroup (ConcurrencyGroupElement group) argument
462 containsConcurrencyGroup(ConcurrencyGroupElement group) argument
[all...]
/glassfish-3.1.2/common/common-util/src/main/java/org/glassfish/security/common/
H A DFileRealmHelper.java74 * <li>groups - A comma separated list of group memberships.
94 // Separators in keyfile (user;pwd-info;group[,group]*)
99 // Valid non-alphanumeric/whitespace chars in user/group name
107 private final HashMap<String,Integer> groupSizeMap = new HashMap<String, Integer>(); // maps of groups with value cardinality of group
176 * @return enumeration of group names (strings)
186 * @param username Name of the user in this realm whose group listing
188 * @return Array of group names (strings) or null if the user does
212 * @returns Array of group names the user belongs to, or null if
265 * <i>username@foo.com</i>. It will not allow the same symbol for a group nam
372 validateGroupName(String group) argument
[all...]
/glassfish-3.1.2/persistence/cmp/model/src/main/java/com/sun/jdo/api/persistence/model/mapping/impl/
H A DMappingFieldElementImpl.java219 //======================= fetch group handling ======================
221 /** Get the fetch group of this field element.
222 * @return the fetch group, one of {@link #GROUP_DEFAULT},
228 /** Set the fetch group of this field element.
229 * @param group - an integer indicating the fetch group, one of:
234 public void setFetchGroup (int group) throws ModelException argument
237 Integer newGroup = new Integer(group);
242 setFetchGroupInternal(group);
251 /** Set the fetch group o
258 setFetchGroupInternal(int group) argument
[all...]
/glassfish-3.1.2/common/amx-core/src/main/java/org/glassfish/admin/amx/core/proxy/
H A DAMXProxyHandler.java1248 public String group() method in class:AMXProxyHandler

Completed in 135 milliseconds