added url provider test for wui provider

This commit is contained in:
Sebastian Sdorra
2012-01-08 13:05:31 +01:00
parent 8b8ee8d5da
commit f8e91dd971
2 changed files with 145 additions and 9 deletions

View File

@@ -75,17 +75,17 @@ public class WUIUrlProvider implements UrlProvider
//~--- get methods ----------------------------------------------------------
/**
* Method description
* Returns the baseUrl, because there is no authentication url.
*
*
* @returns the baseUrl, because there is no authentication url
*
* @return
*/
@Override
public String getAuthenticationUrl()
{
// ???
return null;
return baseUrl;
}
/**
@@ -125,17 +125,15 @@ public class WUIUrlProvider implements UrlProvider
}
/**
* Method description
* Returns the baseUrl, because there is no state url.
*
*
* @return
* @return the baseUrl, because there is no state url
*/
@Override
public String getStateUrl()
{
// ???
return null;
return baseUrl;
}
/**