package com.juick.server.protocol; /** * Created by vitalyster on 08.04.2016. */ public class ProtocolReply { private String result; public ProtocolReply(String text) { this.result = text; } public String getResult() { return result; } }