String result = restUtils.getUrlAsString(getUrlWithRest() +
"Member?where=Username='" + getUrlEncodedUsername() + "'&sel=Scopes",
getUsername(), getPassword());
if (result != null) {
Assets assets = MarshallingUtils.marshal(Assets.class, result);
if (assets != null && assets.getAssets() != null) {
for (Assets.Asset asset : assets.getAssets()) {
if (asset != null && asset.getAttributes() != null && asset.getAttributes().size() > 0) {
if (asset.getAttributes().get(0).getMixed() != null)
projectList.addAll(asset.getAttributes().get(0).getMixed());
if (asset.getAttributes().get(0).getValues() != null)
projectList.addAll(asset.getAttributes().get(0).getValues());