All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.sphere.internal.filters.UserInputAttributeFilterBase Maven / Gradle / Ivy

There is a newer version: 0.72.1
Show newest version
package io.sphere.internal.filters;

/** Helper base class for implementations of {@link io.sphere.client.filters.UserInputFilter}s
 *  that match on given attribute. */
public abstract class UserInputAttributeFilterBase extends UserInputFilterBase {
    /** Backend name of the custom attribute. */
    protected String attribute;
    /** Backend name of the attribute this filter matches on. */
    public String getAttribute() {
        return attribute;
    }

    protected UserInputAttributeFilterBase(String attribute) { super(attribute); this.attribute = attribute; }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy