Back to project page owncloud-gallery.
The source code is released under:
GNU General Public License
If you think the Android project owncloud-gallery 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 library; //from ww w .j av a2s .co m public class VerifyHostnameResult { public enum ResultType { MalformedUri, InvalidCertificate, HostnameNotFound, NotFound, Timeout, Unknown, Null, OK, ServerError, Redirect } private String title; private String message; private ResultType type; private int responseCode; public ResultType getType() { return type; } public void setType(ResultType type) { this.type = type; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getMessage() { return message; } public void setMessage(String message) { this.message = message; } public int getResponseCode() { return responseCode; } public void setResponseCode(int responseCode) { this.responseCode = responseCode; } }