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

java.com.ionic.sdk.agent.cipher.batch.data.DataItem 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.agent.cipher.batch.data;

import java.util.Arrays;

/**
 * Generic container for array of bytes.
 */
public class DataItem {

    /**
     * The data associated with the item.
     */
    private final byte[] data;

    /**
     * Constructor.
     *
     * @param data the data to be stored
     */
    public DataItem(final byte[] data) {
        this.data = Arrays.copyOf(data, data.length);
    }

    /**
     * @return the data stored in this object
     */
    public byte[] getData() {
        return Arrays.copyOf(data, data.length);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy