package cj.proxy;

import java.io.IOException;

import org.restlet.representation.Representation;

public class Util {

	public static void printRepresentation(String preamble, Representation representation) throws IOException {
		System.out.println("\n" + preamble);
		representation.write(System.out);
	}

}
