/* * Copyright 2016-2017 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 org.springframework.cassandra.test.integration.core; /** * Test POJO * * @author David Webb */ public class Book { private String isbn; private String title; private String author; private int pages; /** * @return Returns the isbn. */ public String getIsbn() { return isbn; } /** * @param isbn The isbn to set. */ public void setIsbn(String isbn) { this.isbn = isbn; } /** * @return Returns the title. */ public String getTitle() { return title; } /** * @param title The title to set. */ public void setTitle(String title) { this.title = title; } /** * @return Returns the author. */ public String getAuthor() { return author; } /** * @param author The author to set. */ public void setAuthor(String author) { this.author = author; } /** * @return Returns the pages. */ public int getPages() { return pages; } /** * @param pages The pages to set. */ public void setPages(int pages) { this.pages = pages; } /* (non-Javadoc) * @see java.lang.Object#toString() */ public String toString() { StringBuilder sb = new StringBuilder(); sb.append("isbn -> " + isbn).append("\n"); sb.append("tile -> " + title).append("\n"); sb.append("author -> " + author).append("\n"); sb.append("pages -> " + pages).append("\n"); return sb.toString(); } }