Package org.restlet.representation

Examples of org.restlet.representation.WriterRepresentation


        return new StringRepresentation( result.toString(), MediaType.APPLICATION_JSON );
    }

    private Representation createTextHtmlRepresentation( final Object result, final Response response )
    {
        return new WriterRepresentation( MediaType.TEXT_HTML )
                    {
                        @Override
                        public void write( Writer writer )
                            throws IOException
                        {
View Full Code Here


                    };
    }

    private Representation createAtomRepresentation( final Object result, final Response response )
    {
        return new WriterRepresentation( MediaType.APPLICATION_ATOM )
        {
            @Override
            public void write( Writer writer )
                throws IOException
            {
View Full Code Here

                return true;
            }
            else if( MediaType.TEXT_HTML.equals( type ) )
            {
                Representation rep = new WriterRepresentation( MediaType.TEXT_HTML )
                {
                    @Override
                    public void write( Writer writer )
                        throws IOException
                    {
View Full Code Here

                response.setEntity( new StringRepresentation( resourceValue.toString(), MediaType.APPLICATION_JSON ) );
                return true;
            }
            else if( MediaType.TEXT_HTML.equals( type ) )
            {
                Representation rep = new WriterRepresentation( MediaType.TEXT_HTML )
                {
                    @Override
                    public void write( Writer writer )
                        throws IOException
                    {
View Full Code Here

TOP

Related Classes of org.restlet.representation.WriterRepresentation

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.