in impl/src/main/java/org/apache/directory/fortress/realm/TcPrincipal.java [54:63]
public TcPrincipal( String name, HashMap<String, Object> context )
{
if ( ( context == null ) || ( name == null ) )
{
throw new IllegalArgumentException( TcPrincipal.class.getName() + " Null Map passed to constructor" );
}
this.context = context;
this.name = name;
}