KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sslexplorer > security > ClientRestriction


1 /*
2  */

3 package com.sslexplorer.security;
4
5 /**
6  * @author brett
7  *
8  * To change the template for this generated type comment go to
9  * Window - Preferences - Java - Code Generation - Code and Comments
10  */

11 public interface ClientRestriction {
12   public abstract boolean getAllow();
13   public abstract void setAllow(boolean allow);
14   public abstract String JavaDoc getExceptions();
15   public abstract void setExceptions(String JavaDoc exceptions);
16   public abstract String JavaDoc getOsName();
17   public abstract String JavaDoc getPropertyName();
18 }
Popular Tags