view src/main/java/de/mpiwg/itgroup/annotationManager/restlet/Dummy.java @ 23:a3e324009990

now Mavenified! removed tiny-mce javascript from html frontend. still needs TripleStoreManager project in Eclipse. jsontoken 1.1 has to be built manually.
author casties
date Tue, 03 Apr 2012 13:05:05 +0200
parents src/de/mpiwg/itgroup/annotationManager/restlet/Dummy.java@77530be3c747
children
line wrap: on
line source

package de.mpiwg.itgroup.annotationManager.restlet;

import java.io.FileWriter;
import java.io.IOException;

import org.restlet.representation.Representation;
import org.restlet.representation.StringRepresentation;
import org.restlet.resource.Get;
import org.restlet.resource.Post;
import org.restlet.resource.ServerResource;

public class Dummy extends ServerResource {

	@Post
	public Representation doPost(Representation entity){
		
		try {
			FileWriter fh = new FileWriter("/tmp/input", true);
			fh.write(entity.toString());
			fh.write(entity.getText());
			fh.close();
		} catch (IOException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
		
		return new StringRepresentation("thanks");
	}
	
	
	@Get
	public Representation doGet(Representation entity){
		
		try {
			FileWriter fh = new FileWriter("/tmp/input", true);
			fh.write(entity.toString());
			fh.close();
		} catch (IOException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
		
		return new StringRepresentation("thanks");
	}
}