com.capitalone.dashboard.model.QAutoDiscoveredEntry 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 static com.mysema.query.types.PathMetadataFactory.*;
import com.mysema.query.types.path.*;
import com.mysema.query.types.PathMetadata;
import javax.annotation.Generated;
import com.mysema.query.types.Path;
/**
* QAutoDiscoveredEntry is a Querydsl query type for AutoDiscoveredEntry
*/
@Generated("com.mysema.query.codegen.EmbeddableSerializer")
public class QAutoDiscoveredEntry extends BeanPath {
private static final long serialVersionUID = -1064403399L;
public static final QAutoDiscoveredEntry autoDiscoveredEntry = new QAutoDiscoveredEntry("autoDiscoveredEntry");
public final StringPath description = createString("description");
public final BooleanPath enabled = createBoolean("enabled");
public final StringPath niceName = createString("niceName");
public final MapPath> options = this.>createMap("options", String.class, Object.class, SimplePath.class);
public final BooleanPath pushed = createBoolean("pushed");
public final EnumPath status = createEnum("status", AutoDiscoveryStatusType.class);
public final StringPath toolName = createString("toolName");
public QAutoDiscoveredEntry(String variable) {
super(AutoDiscoveredEntry.class, forVariable(variable));
}
public QAutoDiscoveredEntry(Path extends AutoDiscoveredEntry> path) {
super(path.getType(), path.getMetadata());
}
public QAutoDiscoveredEntry(PathMetadata> metadata) {
super(AutoDiscoveredEntry.class, metadata);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy