Interface LoginParameters
-
- All Known Implementing Classes:
CredentialsDescription.SessionCredentialItem
public interface LoginParameters
This interface describes login parameters to be used to submit a page during sequential authentication.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
_rcsid
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.regex.Pattern
getContentPattern()
Get the content pattern.java.util.regex.Pattern
getFormNamePattern()
Get the form name pattern.java.lang.String
getOverrideTargetURL()
Get the override target URL.int
getParameterCount()
Get the number of parameters.java.util.regex.Pattern
getParameterNamePattern(int index)
Get the name of the i'th parameter.java.lang.String
getParameterValue(int index)
Get the desired value of the i'th parameter.java.util.regex.Pattern
getPreferredLinkPattern()
Get the preferred link pattern.java.util.regex.Pattern
getPreferredRedirectionPattern()
Get the preferred redirection pattern.
-
-
-
Field Detail
-
_rcsid
static final java.lang.String _rcsid
- See Also:
- Constant Field Values
-
-
Method Detail
-
getOverrideTargetURL
java.lang.String getOverrideTargetURL()
Get the override target URL.
-
getPreferredRedirectionPattern
java.util.regex.Pattern getPreferredRedirectionPattern()
Get the preferred redirection pattern.
-
getPreferredLinkPattern
java.util.regex.Pattern getPreferredLinkPattern()
Get the preferred link pattern.
-
getFormNamePattern
java.util.regex.Pattern getFormNamePattern()
Get the form name pattern.
-
getContentPattern
java.util.regex.Pattern getContentPattern()
Get the content pattern.
-
getParameterCount
int getParameterCount()
Get the number of parameters.
-
getParameterNamePattern
java.util.regex.Pattern getParameterNamePattern(int index)
Get the name of the i'th parameter.
-
getParameterValue
java.lang.String getParameterValue(int index)
Get the desired value of the i'th parameter.
-
-