001package com.pusher.rest.data;
002
003public class EncryptedMessage {
004
005    private final String nonce;
006    private final String ciphertext;
007
008    public EncryptedMessage(String nonce, String ciphertext) {
009        this.nonce = nonce;
010        this.ciphertext = ciphertext;
011    }
012
013    public String getNonce() {
014        return nonce;
015    }
016
017    public String getCiphertext() {
018        return ciphertext;
019    }
020}