* Profile name that the dummy profile should return
* @throws WGAPIException
*/
public WGUserProfile getDummyProfile(String name) throws WGAPIException {
WGUserProfile profile = new WGUserProfile(this, new WGFakeUserProfile(this, name));
profile.setDummy(true);
return profile;
}