package https;

import java.io.IOException;

import org.restlet.resource.ClientResource;
import org.restlet.resource.ResourceException;

public class HttpsClient {

    /**
     * @param args
     * @throws ResourceException
     * @throws IOException
     */
    public static void main(String[] args) throws IOException,
            ResourceException {

        ClientResource cr = new ClientResource("https://jaxb.dev.java.net/");
        cr.get().write(System.out);
    }

}
