1 package org.jbpm.identity.security;2 3 /**4 * the username as a public credential of a Subject.5 */6 public class Username {7 8 String text;9 10 Username(String text) {11 this.text = text;12 }13 14 public String getText() {15 return text;16 }17 }18