All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ionic.sdk.device.profile.persistor.DeviceProfilePersistorPlainText Maven / Gradle / Ivy

Go to download

The Ionic Java SDK provides an easy-to-use interface to the Ionic Platform.

There is a newer version: 2.9.0
Show newest version
package com.ionic.sdk.device.profile.persistor;

import com.ionic.sdk.cipher.PassThroughCipher;

/**
 * DeviceProfilePersistorPlainText is a persistor that uses a pass through
 * cipher.
 *
 */
public class DeviceProfilePersistorPlainText extends DeviceProfilePersistorBase {

    /**
     * constructor for DeviceProfilePersistorPlainText.
     *
     * @param filePath
     *            where the DeviceProfile file is stored.
     */
    public DeviceProfilePersistorPlainText(final String filePath) {
        super(filePath, new PassThroughCipher(null));
    }

    /**
     * Default constructor for DeviceProfilePersistorPlainText.
     */
    public DeviceProfilePersistorPlainText() {
        super(new PassThroughCipher(null));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy