Search Results
OK to copy?
Examples 1 through 10 of
1044 (0.253 seconds)
Class:
com.technoetic.xplanner.domain.repository.RoleRepositoryImpl
©,
Rating:
0% of 0,
C1
Class: com.technoetic.xplanner.security.jaas.AbstractLoginModule ©, Rating: 0% of 0, C1
Class: org.springframework.aop.framework.autoproxy.metadata.AttributesPoolingTargetSourceCreator ©, Rating: 0% of 0, C2
Class: org.apache.catalina.ssi.SSIPrintenv ©, Rating: 0% of 0, C2
Class: com.technoetic.xplanner.db.hibernate.EHCacheHelper ©, Rating: 0% of 0, C2
Class: com.technoetic.xplanner.security.config.WebResourceCollection ©, Rating: 0% of 0, C1
Class: org.apache.jmeter.testelement.property.PropertyIteratorImpl ©, Rating: 0% of 0, C1
Class: org.apache.jmeter.engine.util.ReplaceFunctionsWithStrings ©, Rating: 0% of 0, C1
Class: com.technoetic.xplanner.security.config.SecurityConstraint ©, Rating: 0% of 0, C2
Class: com.technoetic.xplanner.security.config.SecurityConstraint ©, Rating: 0% of 0, C2
28 Iterator roleIterator = roles.iterator();
29 if (roleIterator.hasNext()) {
30 role = (Role)roleIterator.next();
31 }
32 return role;
Class: com.technoetic.xplanner.security.jaas.AbstractLoginModule ©, Rating: 0% of 0, C1
34 Iterator peopleIterator = people.iterator();
35 if (peopleIterator.hasNext()) {
36 return (Person)peopleIterator.next();
37 } else {
38 return null;
Class: org.springframework.aop.framework.autoproxy.metadata.AttributesPoolingTargetSourceCreator ©, Rating: 0% of 0, C2
Class: org.apache.catalina.ssi.SSIPrintenv ©, Rating: 0% of 0, C2
35 String[] paramValues,
36 PrintWriter writer) {
37
38 //any arguments should produce an error
39 if ( paramNames.length > 0 ) {
Class: com.technoetic.xplanner.db.hibernate.EHCacheHelper ©, Rating: 0% of 0, C2
24 try {
25 while (classMappings.hasNext()) {
26 PersistentClass persistentClass = (PersistentClass)classMappings.next();
27 configureClassCache(persistentClass.getMappedClass());
28 }
Class: com.technoetic.xplanner.security.config.WebResourceCollection ©, Rating: 0% of 0, C1
31 Iterator urlPatterns = getUrlPatterns().iterator();
32 while (urlPatterns.hasNext()) {
33 String urlPattern = (String)urlPatterns.next();
34 if (isMatchingPathInfo(request, urlPattern)) {
35 return true;
Class: org.apache.jmeter.testelement.property.PropertyIteratorImpl ©, Rating: 0% of 0, C1
Class: org.apache.jmeter.engine.util.ReplaceFunctionsWithStrings ©, Rating: 0% of 0, C1
55 while (iter.hasNext())
56 {
57 String key = (String) iter.next();
58 String value = (String) getVariables().get(key);
59 input = StringUtilities.substitute(input, value, "${" + key + "}");
Class: com.technoetic.xplanner.security.config.SecurityConstraint ©, Rating: 0% of 0, C2
54 Iterator roleNames = authConstraint.getRoleNames().iterator();
55 while (roleNames.hasNext()) {
56 String role = (String)roleNames.next();
57 if ((SecurityHelper.getSubject(request) != null && role.equals("*")) ||
58 SecurityHelper.isUserInRole(request, role)) {
Class: com.technoetic.xplanner.security.config.SecurityConstraint ©, Rating: 0% of 0, C2
51 Iterator authConstraints = getAuthConstraints().iterator();
52 while (authConstraints.hasNext()) {
53 AuthConstraint authConstraint = (AuthConstraint)authConstraints.next();
54 Iterator roleNames = authConstraint.getRoleNames().iterator();
55 while (roleNames.hasNext()) {