Package resources.tags

Source Code of resources.tags.TagSearchResource

package resources.tags;

import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.PathParam;

import views.ArticlesView;
import daos.ArticleDao;

@Path("/tags/{tag}")
public class TagSearchResource {

    private ArticleDao articleDao;

    public TagSearchResource(ArticleDao articleDao) {
        this.articleDao = articleDao;
    }

    @GET
    public ArticlesView searchByTag(@PathParam("tag") String tag) {
        return new ArticlesView(articleDao.findByTag(tag));
    }
}
TOP

Related Classes of resources.tags.TagSearchResource

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.