📄 appoamimpl.java
字号:
package samples.fw;
public class AppOAMImpl
extends org.csapi.fw.fw_application.integrity.IpAppOAMPOA
{
String fwDateAndTime;
public AppOAMImpl(){}
/**
* This method is used by the framework to send the system
* date and time to an application. The application responds with
* its own date and time.
*/
public String systemDateTimeQuery(String aFwDateAndTime)
{
java.util.Calendar cal = java.util.Calendar.getInstance();
java.util.Date d = cal.getTime();
fwDateAndTime = aFwDateAndTime;
return d.toString();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -