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