Search Results
OK to copy?
Examples 1 through 10 of
116 (0.16799999999999998 seconds)
Class:
org.apache.catalina.connector.Constants
©,
Rating:
0% of 0,
C1
Class: org.apache.jasper.runtime.HttpJspBase ©, Rating: 0% of 0, C1
Class: org.apache.jasper.security.SecurityClassLoad ©, Rating: 0% of 0, C1
Class: org.apache.catalina.security.SecurityConfig ©, Rating: 0% of 0, C2
Class: org.apache.axis.providers.java.RMIProvider ©, Rating: 0% of 0, C1
Class: org.apache.batik.util.ApplicationSecurityEnforcerTest ©, Rating: 0% of 0, C1
Class: org.apache.batik.util.ApplicationSecurityEnforcerTest ©, Rating: 0% of 0, C1
Class: org.apache.jasper.runtime.JspFactoryImpl ©, Rating: 0% of 0, C1
Class: org.apache.jasper.runtime.JspFactoryImpl ©, Rating: 0% of 0, C1
Class: org.apache.jasper.runtime.ProtectedFunctionMapper ©, Rating: 0% of 0, C1
42 * Security flag.
43 */
44 public static final boolean SECURITY =
45 (System.getSecurityManager() != null);
46
Class: org.apache.jasper.runtime.HttpJspBase ©, Rating: 0% of 0, C1
041 if( JspFactory.getDefaultFactory() == null ) {
042 JspFactoryImpl factory = new JspFactoryImpl();
043 if( System.getSecurityManager() != null ) {
044 String basePackage = "org.apache.jasper.";
045 try {
Class: org.apache.jasper.security.SecurityClassLoad ©, Rating: 0% of 0, C1
033 public static void securityClassLoad(ClassLoader loader){
034
035 if( System.getSecurityManager() == null ){
036 return;
037 }
Class: org.apache.catalina.security.SecurityConfig ©, Rating: 0% of 0, C2
113 */
114 private final void setSecurityProperty(String properties, String packageList){
115 if (System.getSecurityManager() != null){
116 String definition = Security.getProperty(properties);
117 if( definition != null && definition.length() > 0 ){
Class: org.apache.axis.providers.java.RMIProvider ©, Rating: 0% of 0, C1
095 // Read deployment descriptor options
096 String namingLookup = getStrOption(OPTION_NAMING_LOOKUP, msgContext.getService());
097 if (System.getSecurityManager() == null) {
098 System.setSecurityManager(new RMISecurityManager());
099 }
Class: org.apache.batik.util.ApplicationSecurityEnforcerTest ©, Rating: 0% of 0, C1
133 ase.enforceSecurity(true);
134 ase.enforceSecurity(false);
135 SecurityManager sm = System.getSecurityManager();
136 if (sm == null && ase.lastSecurityManagerInstalled == null) {
137 return true;
Class: org.apache.batik.util.ApplicationSecurityEnforcerTest ©, Rating: 0% of 0, C1
114 try {
115 ase.enforceSecurity(true);
116 SecurityManager sm = System.getSecurityManager();
117 if (sm == ase.lastSecurityManagerInstalled){
118 return true;
Class: org.apache.jasper.runtime.JspFactoryImpl ©, Rating: 0% of 0, C1
068 if( pc == null )
069 return;
070 if( System.getSecurityManager() != null ) {
071 PrivilegedReleasePageContext dp = new PrivilegedReleasePageContext(
072 (JspFactoryImpl)this,pc);
Class: org.apache.jasper.runtime.JspFactoryImpl ©, Rating: 0% of 0, C1
053 boolean autoflush) {
054
055 if( System.getSecurityManager() != null ) {
056 PrivilegedGetPageContext dp = new PrivilegedGetPageContext(
057 (JspFactoryImpl)this, servlet, request, response, errorPageURL,
Class: org.apache.jasper.runtime.ProtectedFunctionMapper ©, Rating: 0% of 0, C1
134 java.lang.reflect.Method method;
135 ProtectedFunctionMapper funcMapper;
136 if (System.getSecurityManager() != null){
137 funcMapper = (ProtectedFunctionMapper)AccessController.doPrivileged(
138 new PrivilegedAction(){