alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Commons Digester example source code file (Book.java)

This example Commons Digester source code file (Book.java) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Commons Digester tags/keywords

beanpropertysetter, beanpropertysetter, book, book, factorycreate, item, override, override, string, string

The Commons Digester Book.java source code

/* $Id: Book.java 992060 2010-09-02 19:09:47Z simonetripodi $
 *
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You 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.apache.commons.digester.annotations.catalog;

import org.apache.commons.digester.annotations.rules.BeanPropertySetter;
import org.apache.commons.digester.annotations.rules.FactoryCreate;

/**
 * 
 *
 * @since 2.1
 */
@FactoryCreate(
    pattern = "catalog/book",
    factoryClass = BookFactory.class
)
public final class Book implements Item {

    private final String isbn;

    @BeanPropertySetter(pattern = "catalog/book/title")
    private String title;

    @BeanPropertySetter(pattern = "catalog/book/author")
    private String author;

    @BeanPropertySetter(pattern = "catalog/book/desc")
    private String desc;

    public Book(String isbn) {
        this.isbn = isbn;
    }

    public String getTitle() {
        return this.title;
    }

    public void setTitle(String title) {
        this.title = title;
    }

    public String getAuthor() {
        return this.author;
    }

    public void setAuthor(String author) {
        this.author = author;
    }

    public String getDesc() {
        return this.desc;
    }

    public void setDesc(String desc) {
        this.desc = desc;
    }

    public String getIsbn() {
        return this.isbn;
    }

    @Override
    public boolean equals(Object obj) {
        if (this == obj)
            return true;
        if (obj == null)
            return false;
        if (getClass() != obj.getClass())
            return false;
        Book other = (Book) obj;
        if (this.author == null) {
            if (other.getAuthor() != null)
                return false;
        } else if (!this.author.equals(other.getAuthor()))
            return false;
        if (this.desc == null) {
            if (other.getDesc() != null)
                return false;
        } else if (!this.desc.equals(other.getDesc()))
            return false;
        if (this.isbn == null) {
            if (other.getIsbn() != null)
                return false;
        } else if (!this.isbn.equals(other.getIsbn()))
            return false;
        if (this.title == null) {
            if (other.getTitle() != null)
                return false;
        } else if (!this.title.equals(other.getTitle()))
            return false;
        return true;
    }

    @Override
    public String toString() {
        return "Book [author="
                + author
                + ", desc="
                + desc
                + ", isbn="
                + isbn
                + ", title="
                + title
                + "]";
    }

    public void print() {
        System.out.println(this.toString());
    }

}

Other Commons Digester examples (source code examples)

Here is a short list of links related to this Commons Digester Book.java source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.