be.personify.iam.model.provisioning.QRouteEntry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of personify-model Show documentation
Show all versions of personify-model Show documentation
a possible model for personify
package be.personify.iam.model.provisioning;
import static com.querydsl.core.types.PathMetadataFactory.*;
import com.querydsl.core.types.dsl.*;
import com.querydsl.core.types.PathMetadata;
import javax.annotation.processing.Generated;
import com.querydsl.core.types.Path;
import com.querydsl.core.types.dsl.PathInits;
/**
* QRouteEntry is a Querydsl query type for RouteEntry
*/
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QRouteEntry extends EntityPathBase {
private static final long serialVersionUID = -1004531206L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QRouteEntry routeEntry = new QRouteEntry("routeEntry");
public final be.personify.iam.model.util.QPersisted _super = new be.personify.iam.model.util.QPersisted(this);
//inherited
public final StringPath createdBy = _super.createdBy;
//inherited
public final DateTimePath creationDate = _super.creationDate;
public final NumberPath id = createNumber("id", Long.class);
//inherited
public final DateTimePath modificationDate = _super.modificationDate;
//inherited
public final StringPath modifiedBy = _super.modifiedBy;
public final StringPath name = createString("name");
public final QRoute route;
public final QTargetSystemAttribute targetSystemAttribute;
public QRouteEntry(String variable) {
this(RouteEntry.class, forVariable(variable), INITS);
}
public QRouteEntry(Path extends RouteEntry> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}
public QRouteEntry(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}
public QRouteEntry(PathMetadata metadata, PathInits inits) {
this(RouteEntry.class, metadata, inits);
}
public QRouteEntry(Class extends RouteEntry> type, PathMetadata metadata, PathInits inits) {
super(type, metadata, inits);
this.route = inits.isInitialized("route") ? new QRoute(forProperty("route")) : null;
this.targetSystemAttribute = inits.isInitialized("targetSystemAttribute") ? new QTargetSystemAttribute(forProperty("targetSystemAttribute"), inits.get("targetSystemAttribute")) : null;
}
}