package com.k_int.ciim.ui.json;

import java.text.SimpleDateFormat;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlTransient;

import org.springframework.stereotype.Component;

import com.sun.jersey.api.view.ImplicitProduces;

@ImplicitProduces("application/json;qs=5")
@XmlAccessorType(XmlAccessType.FIELD)
@Component
public abstract class AbstractJSON 
{
	@XmlTransient
	public static final SimpleDateFormat DEFAULT_FORMAT = new SimpleDateFormat("dd/MM/yyyy '<I>'HH:mm'</I>'");
}
