home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2009 June / maximum-cd-2009-06.iso / DiscContents / digsby_setup.exe / lib / plugins / researchdriver / res / process.jar / secmgr / manager / PluraSecurityManager.class (.txt)
Encoding:
Java Class File  |  2009-02-11  |  993 b   |  19 lines

  1. package secmgr.manager;
  2.  
  3. public class PluraSecurityManager extends SecurityManager {
  4.    public void checkAccept(String host, int port) {
  5.       if (port != 80 && port != 8080 && port != 443 && port != -1) {
  6.          throw new SecurityException();
  7.       }
  8.    }
  9.  
  10.    public void checkConnect(String host, int port) {
  11.       if (port != 80 && port != 8080 && port != 443 && port != -1) {
  12.          throw new SecurityException();
  13.       }
  14.    }
  15.  
  16.    public void checkMemberAccess(Class<?> arg0, int arg1) {
  17.    }
  18. }
  19.