/** * The contents of this file are subject to the OpenMRS Public License * Version 1.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://license.openmrs.org * * Software distributed under the License is distributed on an "AS IS" * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the * License for the specific language governing rights and limitations * under the License. * * Copyright (C) OpenMRS, LLC. All Rights Reserved. */ package org.openmrs.reporting; /** * @deprecated see reportingcompatibility module */ @Deprecated public class ReportObjectFactoryModule { private String name; private String displayName; private String className; private String validatorClass; private String type; /** * @return Returns the className. */ public String getClassName() { return className; } /** * @param className The className to set. */ public void setClassName(String className) { this.className = className; } /** * @return Returns the displayName. */ public String getDisplayName() { return displayName; } /** * @param displayName The displayName to set. */ public void setDisplayName(String displayName) { this.displayName = displayName; } /** * @return Returns the name. */ public String getName() { return name; } /** * @param name The name to set. */ public void setName(String name) { this.name = name; } /** * @return Returns the typeName. */ public String getType() { return type; } /** * @param type The <code>String</code> name of the type to set. */ public void setType(String type) { this.type = type; } /** * @return Returns the validatorClass. */ public String getValidatorClass() { return validatorClass; } /** * @param validatorClass The validatorClass to set. */ public void setValidatorClass(String validatorClass) { this.validatorClass = validatorClass; } }