ObjectInfo.java
Home
/
services /
src /
main /
java /
org /
keycloak /
services /
models /
nosql /
impl /
ObjectInfo.java
package org.keycloak.services.models.nosql.impl;
import java.util.List;
import org.keycloak.services.models.nosql.api.NoSQLObject;
import org.picketlink.common.properties.Property;
/**
* @author <a href="mailto:mposolda@redhat.com">Marek Posolda</a>
*/
class ObjectInfo<T extends NoSQLObject> {
private final Class<T> objectClass;
private final String dbCollectionName;
private final Property<String> oidProperty;
private final List<Property<Object>> properties;
public ObjectInfo(Class<T> objectClass, String dbCollectionName, Property<String> oidProperty, List<Property<Object>> properties) {
this.objectClass = objectClass;
this.dbCollectionName = dbCollectionName;
this.oidProperty = oidProperty;
this.properties = properties;
}
public Class<T> getObjectClass() {
return objectClass;
}
public String getDbCollectionName() {
return dbCollectionName;
}
public Property<String> getOidProperty() {
return oidProperty;
}
public List<Property<Object>> getProperties() {
return properties;
}
public Property<Object> getPropertyByName(String propertyName) {
for (Property<Object> property : properties) {
if (propertyName.equals(property.getName())) {
return property;
}
}
return null;
}
}