iuserid.java
来自「esri的ArcGIS Server超级学习模板程序(for java)」· Java 代码 · 共 17 行
JAVA
17 行
package com.esri.solutions.jitk.personalization.data;
/**
* Uniquely identifies a User within the Personalization subsystem. The
* implementation of this interface is up to the integration developer. *
*/
public interface IUserId {
/**
* Returns the Username of the User that this object is identifying. This
* value is typically the username that was entered at login time.
*
* @return Username.
*/
public String getUsername ();
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?