Interface IBrowserBean
- All Known Implementing Classes:
BrowserBean
public interface IBrowserBean
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
-
Method Summary
Modifier and TypeMethodDescriptionGets the generic OS of the browser.Returns persisted session state in string form.getType()
Gets the specific type of the browser.boolean
Returns true if the browser's type is the specified type, or if the browser's type is a more specific type of the specifed type.void
setClientOS
(String clientOs) Sets the specific OS of the browser.void
Sets the specific type of the browser.void
setUserAgent
(String agent) Set the agent, which in turn sets the browser's type.
-
Field Details
-
id
- See Also:
-
SPECIFIC_TYPE
- See Also:
-
SPECIFIC_OS
- See Also:
-
TYPE_OTHER
- See Also:
-
TYPE_IE
- See Also:
-
TYPE_NS
- See Also:
-
TYPE_IE4
- See Also:
-
TYPE_IE5
- See Also:
-
TYPE_IE55
- See Also:
-
TYPE_IE6
- See Also:
-
TYPE_IE7
- See Also:
-
TYPE_NS4
- See Also:
-
TYPE_NS6
- See Also:
-
TYPE_IE4WIN
- See Also:
-
TYPE_IE5WIN
- See Also:
-
TYPE_IE55WIN
- See Also:
-
TYPE_IE6WIN
- See Also:
-
TYPE_IE7WIN
- See Also:
-
TYPE_IE4MAC
- See Also:
-
TYPE_IE5MAC
- See Also:
-
TYPE_IE55MAC
- See Also:
-
TYPE_IE6MAC
- See Also:
-
TYPE_IE7MAC
- See Also:
-
TYPE_NS4WIN
- See Also:
-
TYPE_NS6WIN
- See Also:
-
TYPE_NS4MAC
- See Also:
-
TYPE_NS6MAC
- See Also:
-
TYPE_WIN
- See Also:
-
TYPE_MAC
- See Also:
-
TYPE_UNIX
- See Also:
-
TYPE_IE4UNIX
- See Also:
-
TYPE_IE5UNIX
- See Also:
-
TYPE_IE55UNIX
- See Also:
-
TYPE_IE6UNIX
- See Also:
-
TYPE_IE7UNIX
- See Also:
-
TYPE_NS4UNIX
- See Also:
-
TYPE_NS6UNIX
- See Also:
-
-
Method Details
-
setUserAgent
Set the agent, which in turn sets the browser's type. -
isType
Returns true if the browser's type is the specified type, or if the browser's type is a more specific type of the specifed type. For example, this method will return true if the browser's type is type_ie5win, but the specified type is just type_ie. -
getType
String getType()Gets the specific type of the browser. UseisType(java.lang.String)
to test to see if the browser is part of a more generic type than the specific type. -
setType
Sets the specific type of the browser. -
getClientOS
String getClientOS()Gets the generic OS of the browser. -
setClientOS
Sets the specific OS of the browser. -
getSessionState
String getSessionState()Returns persisted session state in string form.
-