站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > JBoss 4.0.1 sp1 jaxrpc API Documentation 英文版文档

Options (JAXRPC API) - JBoss 4.0.1 sp1 jaxrpc API Documentation 英文版文档


org.apache.axis.utils
Class Options

java.lang.Object
  extended byorg.apache.axis.utils.Options

public class Options
extends Object


Constructor Summary
Options(String[] _args)
          Constructor - just pass in the args from the command line.
 
Method Summary
 String getHost()
           
 String getPassword()
           
 int getPort()
           
 String[] getRemainingArgs()
          This returns an array of unused args - these are the non-option args from the command line.
 String getRemainingFlags()
          This just returns a string with the unprocessed flags - mainly for error reporting - so you can report the unknown flags.
 String getURL()
           
 String getUser()
           
 int isFlagSet(char optChar)
          Returns an int specifying the number of times that the flag was specified on the command line.
 String isValueSet(char optChar)
          Returns a string (or null) specifying the value for the passed option.
 void setDefaultURL(String url)
           
 void setDefaultURL(URL url)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Options

public Options(String[] _args)
        throws MalformedURLException
Constructor - just pass in the args from the command line.

Method Detail

setDefaultURL

public void setDefaultURL(String url)
                   throws MalformedURLException
Throws:
MalformedURLException

setDefaultURL

public void setDefaultURL(URL url)

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

public String isValueSet(char optChar)
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

public String getRemainingFlags()
This just returns a string with the unprocessed flags - mainly for error reporting - so you can report the unknown flags.


getRemainingArgs

public String[] getRemainingArgs()
This returns an array of unused args - these are the non-option args from the command line.


getURL

public String getURL()
              throws MalformedURLException
Throws:
MalformedURLException

getHost

public String getHost()

getPort

public int getPort()

getUser

public String getUser()

getPassword

public String getPassword()


Copyright © 2002 JBoss Group, LLC. All Rights Reserved.