How can I get the ReferenceType for me after I have logged in? Assume that I am here:
VcloudClient.setLogLevel(Level.OFF);
VcloudClient client = VcloudClient.login(username, password);
What I would like is to get either the UUID or a reference for my user. Something that I could use for this code:
User me = User.getUserById(client, userId);
or
User me = User.getUserByReference(client, userRef);
I see no methods on VcloudClient that can get me there... Any help would be greatly appreciated!