Package org.apache.axis.utils
Class Options
java.lang.Object
org.apache.axis.utils.Options
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetHost()
int
getPort()
String[]
This returns an array of unused args - these are the non-option args from the command line.This just returns a string with the unprocessed flags - mainly for error reporting - so you can report the unknown flags.getURL()
getUser()
int
isFlagSet
(char optChar) Returns an int specifying the number of times that the flag was specified on the command line.isValueSet
(char optChar) Returns a string (or null) specifying the value for the passed option.void
setDefaultURL
(String url) void
setDefaultURL
(URL url)
-
Field Details
-
log
protected static org.apache.commons.logging.Log log
-
-
Constructor Details
-
Options
Constructor - just pass in the args from the command line.- Throws:
MalformedURLException
-
-
Method Details
-
setDefaultURL
- Throws:
MalformedURLException
-
setDefaultURL
-
isFlagSet
public int isFlagSet(char optChar) Returns an int specifying the number of times that the flag was specified on the command line. Once this flag is looked for you must save the result because if you call it again for the same flag you'll get zero. -
isValueSet
Returns a string (or null) specifying the value for the passed option. If the option isn't there then null is returned. The option's value can be specified one of two ways: -x value -xvalue Note that: -ax value is not value (meaning flag 'a' followed by option 'x'. Options with values must be the first char after the '-'. If the option is specified more than once then the last one wins. -
getRemainingFlags
This just returns a string with the unprocessed flags - mainly for error reporting - so you can report the unknown flags. -
getRemainingArgs
This returns an array of unused args - these are the non-option args from the command line. -
getURL
- Throws:
MalformedURLException
-
getHost
-
getPort
public int getPort() -
getUser
-
getPassword
-