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

eu.clarussecure.dataoperations.encryption.EncryptionResult Maven / Gradle / Ivy

The newest version!
package eu.clarussecure.dataoperations.encryption;

import java.util.Random;

import eu.clarussecure.dataoperations.DataOperationResponse;

public class EncryptionResult extends DataOperationResponse {

    public EncryptionResult(String[] attributeNames, String[][] contents) {
        super.id = new Random().nextInt();
        super.attributeNames = attributeNames; // headers originales
        super.contents = contents;
    }

    public String[][] getDecryptedContent() {
        return this.contents;
    }

    public String[] getDecryptedAttributeNames() {
        return this.attributeNames;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy