Interface LoginParameters
-
- All Known Implementing Classes:
CredentialsDescription.SessionCredentialItem
public interface LoginParametersThis 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.PatterngetContentPattern()Get the content pattern.java.util.regex.PatterngetFormNamePattern()Get the form name pattern.java.lang.StringgetOverrideTargetURL()Get the override target URL.intgetParameterCount()Get the number of parameters.java.util.regex.PatterngetParameterNamePattern(int index)Get the name of the i'th parameter.java.lang.StringgetParameterValue(int index)Get the desired value of the i'th parameter.java.util.regex.PatterngetPreferredLinkPattern()Get the preferred link pattern.java.util.regex.PatterngetPreferredRedirectionPattern()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.
-
-