All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.chimerapps.niddler.core.MessageParser Maven / Gradle / Ivy

package com.chimerapps.niddler.core;

import org.json.JSONObject;

/**
 * @author Nicola Verbeeck
 * Date 22/11/16.
 */
final class MessageParser {

	private MessageParser() {
		//Utility class
	}

	static ServerAuth.AuthReply parseAuthReply(final JSONObject jsonObject) {
		return new ServerAuth.AuthReply(jsonObject.optString("hashKey"));
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy