Back to project page android-appwidget-cirrus.
The source code is released under:
MIT License
If you think the Android project android-appwidget-cirrus listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* Copyright 2014 Wayne D Grant (www.waynedgrant.com) Licensed under the MIT License */ /*from w w w. j a v a2 s .com*/ package com.waynedgrant.cirrus.clientraw; public class ClientRawResponse { private int appWidgetId; private ClientRaw clientRaw; private String errorMessage; public ClientRawResponse(int appWidgetId, ClientRaw clientRaw) { this.appWidgetId = appWidgetId; this.clientRaw = clientRaw; } public ClientRawResponse(int appWidgetId, String errorMessage) { this.appWidgetId = appWidgetId; this.errorMessage = errorMessage; } public int getAppWidgetId() { return appWidgetId; } public ClientRaw getClientRaw() { return clientRaw; } public String getErrorMessage() { return errorMessage; } }