从Driver实现访问设备凭据的最简单方法是什么?

时间:2016-10-23 23:39:25

标签: java cumulocity

我正在制作一个类来简化将文件从cumulocity分发到设备

/**
 * Class to simplify pushing files to the devices
 */
public class GenericFileUploadDriver implements Driver, OperationExecutor {

使用c8y_DownloadConfigFile我可以在客户端上挖掘文件URL,我显然需要手动验证才能访问它。

我想使用cfg / device.properties文件中的凭据。 我想知道从这种情况下访问那些最简单的方法是什么?

由于

1 个答案:

答案 0 :(得分:1)

你可以将它从你传递的Platform对象中删除:

public void initialize(Platform platform) throws Exception {
  PlatformParameters parms = (PlatformParameters)platform;
  String user = parms.getUser();
  String password = parms.getPassword();
  // ...
}