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

org.keycloak.representations.info.FeatureRepresentation Maven / Gradle / Ivy

The newest version!
package org.keycloak.representations.info;

import java.util.Set;

public class FeatureRepresentation {
    private String name;
    private String label;
    private FeatureType type;
    private boolean isEnabled;
    private Set dependencies;

    public FeatureRepresentation() {
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getLabel() {
        return label;
    }

    public void setLabel(String label) {
        this.label = label;
    }

    public FeatureType getType() {
        return type;
    }

    public void setType(FeatureType type) {
        this.type = type;
    }

    public boolean isEnabled() {
        return isEnabled;
    }

    public void setEnabled(boolean enabled) {
        isEnabled = enabled;
    }

    public Set getDependencies() {
        return dependencies;
    }

    public void setDependencies(Set dependencies) {
        this.dependencies = dependencies;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy