Back to project page hpush.
The source code is released under:
MIT License
If you think the Android project hpush listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.hpush.data; /* ww w.j a v a 2 s . co m*/ import com.google.gson.annotations.SerializedName; /** * Response of network-calls. * * @author Xinyue Zhao */ public final class Status { @SerializedName("status") private boolean mStatus; @SerializedName("function") private String mFunction; public Status(boolean status, String function) { mStatus = status; mFunction = function; } public String getFunction() { return mFunction; } public boolean status() { return mStatus; } }