
org.omnifaces.facesconfigparser.digester.beans.ValidatorBean Maven / Gradle / Ivy
/*
* Copyright (c) 1997, 2018 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* This Source Code may also be made available under the following Secondary
* Licenses when the conditions for such availability set forth in the
* Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
* version 2 with the GNU Classpath Exception, which is available at
* https://www.gnu.org/software/classpath/license.html.
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
*/
package org.omnifaces.facesconfigparser.digester.beans;
import java.util.Map;
import java.util.TreeMap;
/**
*
* Configuration bean for <attribute>
element.
*
*/
public class ValidatorBean extends FeatureBean implements AttributeHolder, PropertyHolder {
// -------------------------------------------------------------- Properties
private String validatorClass;
public String getValidatorClass() {
return validatorClass;
}
public void setValidatorClass(String validatorClass) {
this.validatorClass = validatorClass;
}
private String validatorId;
public String getValidatorId() {
return validatorId;
}
public void setValidatorId(String validatorId) {
this.validatorId = validatorId;
}
// -------------------------------------------------------------- Extensions
// ------------------------------------------------- AttributeHolder Methods
private Map attributes = new TreeMap();
@Override
public void addAttribute(AttributeBean descriptor) {
attributes.put(descriptor.getAttributeName(), descriptor);
}
@Override
public AttributeBean getAttribute(String name) {
return (attributes.get(name));
}
@Override
public AttributeBean[] getAttributes() {
AttributeBean results[] = new AttributeBean[attributes.size()];
return (attributes.values().toArray(results));
}
@Override
public void removeAttribute(AttributeBean descriptor) {
attributes.remove(descriptor.getAttributeName());
}
// ------------------------------------------------- PropertyHolder Methods
private Map properties = new TreeMap();
@Override
public void addProperty(PropertyBean descriptor) {
properties.put(descriptor.getPropertyName(), descriptor);
}
@Override
public PropertyBean getProperty(String name) {
return (properties.get(name));
}
@Override
public PropertyBean[] getProperties() {
PropertyBean results[] = new PropertyBean[properties.size()];
return (properties.values().toArray(results));
}
@Override
public void removeProperty(PropertyBean descriptor) {
properties.remove(descriptor.getPropertyName());
}
// ----------------------------------------------------------------- Methods
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy