principal property

  1. @TagNumber.new(2)
String get principal

A Kerberos principal that exists in the both the keytab the KDC to authenticate as. A typical principal is of the form primary/instance@REALM, but there is no exact format.

Implementation

@$pb.TagNumber(2)
$core.String get principal => $_getSZ(1);
  1. @TagNumber.new(2)
set principal (String v)

Implementation

@$pb.TagNumber(2)
set principal($core.String v) {
  $_setString(1, v);
}