KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jbpm > identity > security > Password


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 JavaDoc text;
9   
10   Password(String JavaDoc text) {
11     this.text = text;
12   }
13
14   public String JavaDoc getText() {
15     return text;
16   }
17 }
18
Popular Tags