Package org.apache.tomcat.util.compat

Examples of org.apache.tomcat.util.compat.Action


  different functionality - do not use super.execute(), but call
  directly the methods you need.
     */
    public void execute() throws Exception {
  final EmbededTomcat et=this;
  jdk11Compat.doPrivileged( new Action() {
    public Object run() throws Exception {
        et.execute1();
        return null;
    }
      }, jdk11Compat.getAccessControlContext());
View Full Code Here

TOP

Related Classes of org.apache.tomcat.util.compat.Action

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.