com.jniwrapper.win32.ie.event
Class HttpSecurityAction

java.lang.Object
  extended by com.jniwrapper.util.EnumItem
      extended by com.jniwrapper.win32.ie.event.HttpSecurityAction

public class HttpSecurityAction
extends com.jniwrapper.util.EnumItem

Represents a set of possible return values for the HttpSecurityHandler.onSecurityProblem(SecurityProblem) event.


Field Summary
static HttpSecurityAction ABORT
          The calling application should abort the download of a web page that causes a security problem.
static HttpSecurityAction CONTINUE
          The calling application should ignore a security problem and continue downloading a web page.
static HttpSecurityAction DEFAULT
          The calling application should open a standard native dialog box to warn the user about security problem.
 
Method Summary
 
Methods inherited from class com.jniwrapper.util.EnumItem
equals, getLongValue, getValue, hashCode, isOneOf
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

DEFAULT

public static final HttpSecurityAction DEFAULT
The calling application should open a standard native dialog box to warn the user about security problem.


ABORT

public static final HttpSecurityAction ABORT
The calling application should abort the download of a web page that causes a security problem.


CONTINUE

public static final HttpSecurityAction CONTINUE
The calling application should ignore a security problem and continue downloading a web page. This action should be returned only when the application is running on a known trusted server or after you have verified information from the user.