Uses of Class
com.ibm.team.fvt.tests.config.User

Packages that use User
com.ibm.team.fvt.tests.topology   
com.ibm.team.fvt.tests.web   
 

Uses of User in com.ibm.team.fvt.tests.topology
 

Methods in com.ibm.team.fvt.tests.topology that return User
 User Topology.getLoggedUser(java.lang.String url)
           
 User Application.getUser()
           
 

Methods in com.ibm.team.fvt.tests.topology with parameters of type User
 boolean Topology.login(java.lang.String location, User user)
          Login the given user to the application matching the given location and do the same for all other applications on the same server.
 boolean Application.login(User newUser)
          Login the given user to the application.
 boolean Topology.needLogin(java.lang.String location, User user)
          Returns whether the given user needs to login before accessing the given location.
 boolean Application.needLogin(User newUser)
          Tells whether the current application would need login for the given user.
 

Uses of User in com.ibm.team.fvt.tests.web
 

Methods in com.ibm.team.fvt.tests.web that return User
 User WebPage.getUser()
          Return the user used when the page was loaded.
 

Methods in com.ibm.team.fvt.tests.web with parameters of type User
 boolean WebPage.login(User user)
          Login the page from current user to the given user.
 boolean WebPage.login(User user, boolean force)
          Login the page from current user to the given user.
static
<P extends WebPage>
P
WebPage.openPage(java.lang.String location, Config config, User user, java.lang.Class<P> pageClass, java.lang.String... data)
          Retrieve the existing page for the given location.
 

Constructors in com.ibm.team.fvt.tests.web with parameters of type User
WebPage(java.lang.String url, Config config, User user)