The largest Interview Solution Library on the web


java tutorials/
« Previous | 1 | 2 | 3 | Next »

Kerberos User Principal


public class KerberosUserPrincipal extends Principal
{
private String name; // user name
public KerberosUserPrincipal(String userName) {
name = userName
}
public String getName() {
return name;
}
. . .
}
« Previous | 1 | 2 | 3 | Next »


copyright © 2014 - all rights riserved by javatechnologycenter.com