コード例 #1
0
 /**
  * Initializes a new instance of this class.
  *
  * @throws SecurityException If a security manager has been installed and it denies {@link
  *     RuntimePermission}{@code ("httpServerProvider")}
  */
 protected HttpServerProvider() {
   SecurityManager sm = System.getSecurityManager();
   if (sm != null) sm.checkPermission(new RuntimePermission("httpServerProvider"));
 }