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

net.anotheria.anosite.gen.assitedata.rest.ScriptRestResource Maven / Gradle / Ivy

There is a newer version: 4.1.2
Show newest version
/**
 ********************************************************************************
 *** ScriptRestResource.java                                                  ***
 *** generated by AnoSiteGenerator (ASG), Version: 2.6.3                      ***
 *** Copyright (C) 2005 - 2010 Anotheria.net, www.anotheria.net               ***
 *** All Rights Reserved.                                                     ***
 ********************************************************************************
 *** Don't edit this code, if you aren't sure                                 ***
 *** that you do exactly know what you are doing!                             ***
 *** It's better to invest time in the generator, as into the generated code. ***
 ********************************************************************************
 */

package net.anotheria.anosite.gen.assitedata.rest;

import java.util.List;
import net.anotheria.anoprise.metafactory.MetaFactory;
import net.anotheria.anoprise.metafactory.MetaFactoryException;
import javax.ws.rs.Consumes;
import javax.ws.rs.Produces;
import javax.ws.rs.POST;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.PathParam;
import javax.ws.rs.core.Response;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import org.codehaus.jettison.json.JSONArray;
import net.anotheria.anosite.gen.shared.util.ParserUtilService;
import net.anotheria.anosite.gen.assitedata.data.Script;
import net.anotheria.anosite.gen.assitedata.service.IASSiteDataService;
import net.anotheria.anosite.gen.assitedata.service.ASSiteDataServiceException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

@Path("/script")
public class ScriptRestResource{

	private static final Logger LOGGER = LoggerFactory.getLogger(ScriptRestResource.class);
	private IASSiteDataService assitedataService;
	private Gson gson;
	private GsonBuilder builder;

	public ScriptRestResource() {
		builder = new GsonBuilder();
		builder.setPrettyPrinting();
		gson = builder.create();

		try {
			assitedataService = MetaFactory.get(IASSiteDataService.class);
		} catch (MetaFactoryException e) {
			LOGGER.error("Unable to create service: I ASSiteDataService", e);
			throw new RuntimeException("Unable to create service", e);
		}
	}

	@GET
	@Produces("application/json;charset=utf-8")
	public Response getObjects() {

		List