Package com.pugh.sockso.templates.api

Examples of com.pugh.sockso.templates.api.TArtists.makeRenderer()


        final int artistId = Integer.parseInt( getRequest().getUrlParam(2) );

        TArtists tpl = new TArtists();
        tpl.setArtists( relatedArtists.getRelatedArtistsFor(artistId) );

        getResponse().showJson( tpl.makeRenderer() );
    }

    /**
     *  Indicates if this action can handle the request
View Full Code Here


    protected void showArtists( final List<Artist> artists ) throws IOException {
       
        TArtists tpl = new TArtists();
        tpl.setArtists( artists );
       
        getResponse().showJson( tpl.makeRenderer() );
       
    }
   
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.