Package com.jayway.demo.library.rest.resources.hateoas

Source Code of com.jayway.demo.library.rest.resources.hateoas.BooksResource

/*
* Copyright 2011 the original author or authors.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*       http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package com.jayway.demo.library.rest.resources.hateoas;

import com.jayway.demo.library.domain.Book;
import com.jayway.demo.library.domain.BookRepository;
import com.jayway.demo.library.domain.factory.RepositoryFactory;
import com.jayway.demo.library.rest.dto.BookDto;
import com.jayway.demo.library.rest.dto.BookListDto;
import com.jayway.jaxrs.hateoas.Linkable;
import com.jayway.jaxrs.hateoas.core.HateoasResponse;
import com.jayway.jaxrs.hateoas.core.HateoasResponse.HateoasResponseBuilder;
import com.jayway.jaxrs.hateoas.support.AtomRels;

import javax.ws.rs.*;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.Response;

@Path("/library/books")
public class BooksResource {

    private final BookRepository bookRepository;

    public BooksResource() {
        bookRepository = RepositoryFactory.getBookRepository();
    }

    @GET
    @Linkable(LinkableIds.BOOKS_LIST_ID)
    @Produces(MediaType.APPLICATION_JSON)
    public Response getAllBooks() {
        return HateoasResponse
                .ok(BookListDto.fromBeanCollection(bookRepository.getAllBooks()))
                .selfLink(LinkableIds.BOOK_NEW_ID)
                .selfEach(LinkableIds.BOOK_DETAILS_ID, "id").build();
    }

    @POST
    @Linkable(value = LinkableIds.BOOK_NEW_ID, templateClass = BookDto.class)
    @Consumes(MediaType.APPLICATION_JSON)
    @Produces(MediaType.APPLICATION_JSON)
    public Response newBook(BookDto book) {
        Book newBook = bookRepository
                .newBook(book.getAuthor(), book.getTitle());
        return HateoasResponse
                .created(LinkableIds.BOOK_DETAILS_ID, newBook.getId())
                .entity(BookDto.fromBean(newBook)).build();
    }
   
   
    @Path("/{id}")
    public BookResource getBookById(@PathParam("id") Integer id) {
        return new BookResource(bookRepository);
    }

}
TOP

Related Classes of com.jayway.demo.library.rest.resources.hateoas.BooksResource

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.