Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revision Both sides next revision
en:sdk_api [2018/12/17 08:06]
simba
en:sdk_api [2019/01/02 10:35]
simba
Line 28: Line 28:
 \\ \\
  
-=====getVersion===== +=====getVersions===== 
-Get the SDK/​Firmware ​version+Get the SDK/​Firmware ​versions
 <code java> <code java>
-int getVersion(Version version)+int getVersions(Versions versions)
 </​code>​ </​code>​
 ===Parameters=== ===Parameters===
-  * ''​version''​ : SDK/​Firmware ​version+  * ''​versions''​ : version information(SDK / Firmware ​/ Fingerprint library / Card library)
 <callout type="​info">​ <callout type="​info">​
 [[references#​Version|Refer to Version Class]] [[references#​Version|Refer to Version Class]]
 +</​callout>​
 +===Return Code===
 +Returns "​SUCCESS"​ if successfully launched; returns the corresponding error code if an error occurs.
 +
 +\\
 +=====getDeviceInfo=====
 +Get the device information.
 +<code java>
 +int getDeviceInfo(Device device)
 +</​code>​
 +===Parameters===
 +  * ''​device''​ : device information
 +<callout type="​info">​
 +[[references#​Device |Refer to Device Class]]
 </​callout>​ </​callout>​
 ===Return Code=== ===Return Code===
Line 99: Line 113:
  
 \\ \\
-=====getFirmwareFileList=====+=====getFtpFileList=====
 Get a list of file names for the FTP server. Get a list of file names for the FTP server.
 <code java> <code java>
-int getFirmwareFileList(ArrayList<​String>​ fileList)+int getFtpFileList(ArrayList<​String>​ fileList)
 </​code>​ </​code>​
 ===Parameters=== ===Parameters===