com.capitalone.dashboard.model.FeatureFlag Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Core package shared by API layer and Microservices
package com.capitalone.dashboard.model;
import org.springframework.data.mongodb.core.mapping.Document;
import java.util.Map;
@Document(collection="feature_flags")
public class FeatureFlag extends BaseModel {
private String name;
private String description;
private Map flags;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public Map getFlags() {
return flags;
}
public void setFlags(Map flags) {
this.flags = flags;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy