|
|||||||||||||||||||
| 30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover | |||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| IUser.java | - | - | - | - |
|
||||||||||||||
| 1 |
/*
|
|
| 2 |
* Joey and its relative products are published under the terms
|
|
| 3 |
* of the Apache Software License.
|
|
| 4 |
*/
|
|
| 5 |
/*
|
|
| 6 |
* Created on 2004/01/12
|
|
| 7 |
*/
|
|
| 8 |
package org.asyrinx.brownie.core.user;
|
|
| 9 |
|
|
| 10 |
import java.util.Map;
|
|
| 11 |
|
|
| 12 |
/**
|
|
| 13 |
* @author akima
|
|
| 14 |
*/
|
|
| 15 |
public interface IUser { |
|
| 16 |
|
|
| 17 |
public String getUserId();
|
|
| 18 |
|
|
| 19 |
public void setUserId(String userId); |
|
| 20 |
|
|
| 21 |
public String getDisplayName();
|
|
| 22 |
|
|
| 23 |
public Map getProperties();
|
|
| 24 |
|
|
| 25 |
} |
|
||||||||||