Subversion Repositories XServices

Rev

Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

package net.brutex.xservices.security;

import java.util.UUID;

public class UserIdentity implements Identity {

        @Override
        public UUID getUUID() {
                return UUID.randomUUID();
        }

}