* Just for the heck of it - added a UUID based equivilent too.

This commit is contained in:
Adam Frisby
2007-06-09 01:27:02 +00:00
parent 26b208d738
commit 0a600b2dbf
2 changed files with 15 additions and 0 deletions

View File

@@ -706,5 +706,17 @@ namespace OpenGridServices.UserServer
return ProfileToXml(userProfile);
}
public string RestGetUserMethodUUID(string request, string path, string param)
{
UserProfileData userProfile = getUserProfile(new LLUUID(param));
if (userProfile == null)
{
return CreateUnknownUserErrorResponse();
}
return ProfileToXml(userProfile);
}
}
}