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

es.prodevelop.pui9.json.adapters.AbstractPuiGsonJsonSerializer Maven / Gradle / Ivy

The newest version!
package es.prodevelop.pui9.json.adapters;

import com.google.gson.JsonSerializer;
import com.google.gson.TypeAdapterFactory;

/**
 * Use this class to inherit from her when you create a new JsonSerializer for
 * GSON. This way, it will be registered automatically during the application
 * load
 * 
 * @param  The type for this serializer
 * @author Marc Gil - [email protected]
 */
public abstract class AbstractPuiGsonJsonSerializer implements IPuiGsonTypeAdapter, JsonSerializer {

	@Override
	public final Class getUnboxedType() {
		return null;
	}

	@Override
	public final TypeAdapterFactory getFactory() {
		return null;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy