Class PersonInfo


  • public class PersonInfo
    extends java.lang.Object
    Information about a person
    • Field Summary

      Fields 
      Modifier and Type Field Description
      java.lang.String displayName
      The person's display name
      java.lang.String id
      The person ID of the person
    • Constructor Summary

      Constructors 
      Constructor Description
      PersonInfo​(java.lang.String id, java.lang.String displayName)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Field Detail

      • id

        public final java.lang.String id
        The person ID of the person
      • displayName

        public final java.lang.String displayName
        The person's display name
    • Constructor Detail

      • PersonInfo

        public PersonInfo​(java.lang.String id,
                          java.lang.String displayName)
    • Method Detail

      • toString

        @NonNull
        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object