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

com.threatconnect.app.addons.util.config.install.serialize.RuntimeContextJsonSerializer Maven / Gradle / Ivy

The newest version!
package com.threatconnect.app.addons.util.config.install.serialize;

import com.google.gson.reflect.TypeToken;
import com.threatconnect.app.addons.util.config.install.RuntimeContextType;

import java.lang.reflect.Type;
import java.util.List;

/**
 * @author Greg Marut
 */
public class RuntimeContextJsonSerializer extends EnumListJsonSerializer
{
	public RuntimeContextJsonSerializer()
	{
		super(RuntimeContextType.class);
	}
	
	@Override
	public Type getType()
	{
		return new TypeToken>(){}.getType();
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy