Package org.projectforge.fibu.kost

Source Code of org.projectforge.fibu.kost.BusinessAssessmentConfig

/////////////////////////////////////////////////////////////////////////////
//
// Project ProjectForge Community Edition
//         www.projectforge.org
//
// Copyright (C) 2001-2014 Kai Reinhard (k.reinhard@micromata.de)
//
// ProjectForge is dual-licensed.
//
// This community edition is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License as published
// by the Free Software Foundation; version 3 of the License.
//
// This community edition is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
// Public License for more details.
//
// You should have received a copy of the GNU General Public License along
// with this program; if not, see http://www.gnu.org/licenses/.
//
/////////////////////////////////////////////////////////////////////////////

package org.projectforge.fibu.kost;

import java.io.Serializable;
import java.util.List;

import org.apache.commons.lang.builder.ReflectionToStringBuilder;
import org.projectforge.xml.stream.XmlField;
import org.projectforge.xml.stream.XmlObject;

/**
* Used in config.xml for the definition of the used business assessment schema. The business assessment is displayed in different
* accounting areas, such as for DATEV accounting records.
*
* @author Kai Reinhard (k.reinhard@micromata.de)
*
*/
@XmlObject(alias = "businessAssessment")
public class BusinessAssessmentConfig implements Serializable
{
  private static final long serialVersionUID = -8466818920551754849L;

  @XmlField(alias = "rows")
  private List<BusinessAssessmentRowConfig> rows;

  private String heading = "business assessement";

  private String overallPerformance, merchandisePurchase, preliminaryResult;

  public BusinessAssessmentConfig()
  {
  }

  public List<BusinessAssessmentRowConfig> getRows()
  {
    return rows;
  }

  /**
   * @param id id or number of the row.
   * @return The found row or null if not found.
   */
  public BusinessAssessmentRowConfig getRow(final String id)
  {
    if (rows == null || id == null) {
      return null;
    }
    for (final BusinessAssessmentRowConfig row : rows) {
      if (id.equals(row.getId()) == true || id.equals(row.getNo()) == true) {
        return row;
      }
    }
    return null;
  }

  /**
   * @return the heading to be displayed first.
   */
  public String getHeading()
  {
    return heading;
  }

  void setHeading(final String heading)
  {
    this.heading = heading;
  }

  /**
   * @return the overallPerformance (id of the business assessment row).
   */
  public String getOverallPerformance()
  {
    return overallPerformance;
  }

  /**
   * @return the merchandisePurchase (id of the business assessment row).
   */
  public String getMerchandisePurchase()
  {
    return merchandisePurchase;
  }

  /**
   * @return the preliminaryResult (id of the business assessment row).
   */
  public String getPreliminaryResult()
  {
    return preliminaryResult;
  }

  @Override
  public String toString()
  {
    final ReflectionToStringBuilder builder = new ReflectionToStringBuilder(this);
    return builder.toString();
  }
}
TOP

Related Classes of org.projectforge.fibu.kost.BusinessAssessmentConfig

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.