Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 912 → Rev 913

/sun/hostcaptain/trunk/src/ak/hostcaptain/core/model/SystemUser.java
7,7 → 7,7
* @hibernate.class table="systemusers"
*/
public class SystemUser
implements ModelObject
extends GeneralModelObject
{
private Long id;
 
96,8 → 96,13
return ak.hostcaptain.core.CoreResources.TYPE_SYSTEM_USER;
}
 
public String getIdentificationString()
public String getIdentKey()
{
return getName() + " (" + getUid() + ")"; // FIXME: is it really so good style?
return ak.hostcaptain.core.CoreResources.IDENT_SYSTEM_USER;
}
 
public Object[] getIdentParams()
{
return new Object[] { getName(), getUid() };
}
}