KickJava   Java API By Example, From Geeks To Geeks.

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


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