Java tutorial
/* This softtware use BSD licence (http://opensource.org/licenses/BSD-3-Clause) Copyright (c) 2013, Martin Lebeda All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. Neither the name of the Martin Lebeda nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ import java.util.ArrayList; import java.util.List; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; import org.apache.commons.lang3.builder.ToStringStyle; import org.simpleframework.xml.Element; import org.simpleframework.xml.ElementList; import org.simpleframework.xml.Root; /** * @author <a href="mailto:martin.lebeda@gmail.com">Martin Lebeda</a> * Date: 18.11.13 */ @Root public class VOBackupSumary { @Element private int founded = 0; @Element private int dirs = 0; @Element private int emptyFiles = 0; @Element private int nonChanged = 0; @Element private int processed = 0; @ElementList private List<String> errors = new ArrayList<>(); public int getFounded() { return founded; } public void setFounded(int founded) { this.founded = founded; } public int getDirs() { return dirs; } public void setDirs(int dirs) { this.dirs = dirs; } public int getEmptyFiles() { return emptyFiles; } public void setEmptyFiles(int emptyFiles) { this.emptyFiles = emptyFiles; } public int getNonChanged() { return nonChanged; } public void setNonChanged(int nonChanged) { this.nonChanged = nonChanged; } public int getProcessed() { return processed; } public void setProcessed(int processed) { this.processed = processed; } public List<String> getErrors() { return errors; } public void setErrors(List<String> errors) { this.errors = errors; } @Override public boolean equals(final Object o) { return EqualsBuilder.reflectionEquals(o, this); } @Override public int hashCode() { return HashCodeBuilder.reflectionHashCode(this); } @Override public String toString() { return ToStringBuilder.reflectionToString(this, ToStringStyle.SHORT_PREFIX_STYLE); } }