Search Results
OK to copy?
Examples 1 through 10 of
1017 (0.0 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.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
Class: com.technoetic.xplanner.security.config.SecurityConstraint ©, Rating: 0% of 0, C1
27 Role role = null;
28 Iterator roleIterator = roles.iterator();
29 if (roleIterator.hasNext()) {
30 role = (Role)roleIterator.next();
31 }
Class: com.technoetic.xplanner.security.jaas.AbstractLoginModule ©, Rating: 0% of 0, C1
33 userId, Hibernate.STRING);
34 Iterator peopleIterator = people.iterator();
35 if (peopleIterator.hasNext()) {
36 return (Person)peopleIterator.next();
37 } else {
Class: org.apache.catalina.ssi.SSIPrintenv ©, Rating: 0% of 0, C2
34 String[] paramNames,
35 String[] paramValues,
36 PrintWriter writer) {
37
38 //any arguments should produce an error
Class: com.technoetic.xplanner.db.hibernate.EHCacheHelper ©, Rating: 0% of 0, C2
23 Iterator classMappings = hibernateConfig.getClassMappings();
24 try {
25 while (classMappings.hasNext()) {
26 PersistentClass persistentClass = (PersistentClass)classMappings.next();
27 configureClassCache(persistentClass.getMappedClass());
Class: com.technoetic.xplanner.security.config.WebResourceCollection ©, Rating: 0% of 0, C1
30 public boolean matches(HttpServletRequest request) {
31 Iterator urlPatterns = getUrlPatterns().iterator();
32 while (urlPatterns.hasNext()) {
33 String urlPattern = (String)urlPatterns.next();
34 if (isMatchingPathInfo(request, urlPattern)) {
Class: org.apache.jmeter.testelement.property.PropertyIteratorImpl ©, Rating: 0% of 0, C1
Class: org.apache.jmeter.engine.util.ReplaceFunctionsWithStrings ©, Rating: 0% of 0, C1
53 Iterator iter = getVariables().keySet().iterator();
54 String input = prop.getStringValue();
55 while (iter.hasNext())
56 {
57 String key = (String) iter.next();
Class: com.technoetic.xplanner.security.config.SecurityConstraint ©, Rating: 0% of 0, C2
53 AuthConstraint authConstraint = (AuthConstraint)authConstraints.next();
54 Iterator roleNames = authConstraint.getRoleNames().iterator();
55 while (roleNames.hasNext()) {
56 String role = (String)roleNames.next();
57 if ((SecurityHelper.getSubject(request) != null && role.equals("*")) ||
Class: com.technoetic.xplanner.security.config.SecurityConstraint ©, Rating: 0% of 0, C2
50 public boolean isAuthorized(HttpServletRequest request) {
51 Iterator authConstraints = getAuthConstraints().iterator();
52 while (authConstraints.hasNext()) {
53 AuthConstraint authConstraint = (AuthConstraint)authConstraints.next();
54 Iterator roleNames = authConstraint.getRoleNames().iterator();
Class: com.technoetic.xplanner.security.config.SecurityConstraint ©, Rating: 0% of 0, C1
39 public boolean isApplicable(HttpServletRequest request) {
40 Iterator webResourceCollections = getWebResourceCollection().iterator();
41 while (webResourceCollections.hasNext()) {
42 WebResourceCollection webResourceCollection = (WebResourceCollection)webResourceCollections.next();
43 if (webResourceCollection.matches(request)) {