public static String REFRESH_TOKEN = "expected_refresh_token";
public static final String OAUTH_2_OOB_URN = "urn:ietf:wg:oauth:2.0:oob";
public static OAuth2Profile getOAuthProfileWithDefaultValues() throws SoapUIException {
OAuth2ProfileConfig configuration = OAuth2ProfileConfig.Factory.newInstance();
OAuth2Profile profile = new OAuth2Profile(ModelItemFactory.makeOAuth2ProfileContainer(), configuration);
profile.setName("OAuth 2 -Profile");
profile.setAuthorizationURI("http://localhost:8080/authorize");
profile.setAccessTokenURI("http://localhost:8080/accesstoken");
profile.setRedirectURI("http://localhost:8080/redirect");