blob: e4ed9d681a42edbc6b2e2893fc85439ec92b12e5 [file] [log] [blame]
package com.gemstone.gemfire.distributed;
/** a security class used by LocatorTest */
public class MyPrincipal implements java.security.Principal {
public static MyPrincipal create() {
return new MyPrincipal();
}
public String getName() {
return "Bruce";
}
}