be.personify.iam.model.provisioning.QTargetSystemAttribute 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;
/**
* QTargetSystemAttribute is a Querydsl query type for TargetSystemAttribute
*/
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QTargetSystemAttribute extends EntityPathBase {
private static final long serialVersionUID = 470031467L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QTargetSystemAttribute targetSystemAttribute = new QTargetSystemAttribute("targetSystemAttribute");
public final be.personify.iam.model.util.QPersisted _super = new be.personify.iam.model.util.QPersisted(this);
public final EnumPath attributeType = createEnum("attributeType", be.personify.util.AttributeType.class);
//inherited
public final StringPath createdBy = _super.createdBy;
//inherited
public final DateTimePath creationDate = _super.creationDate;
public final NumberPath id = createNumber("id", Long.class);
public final BooleanPath indexed = createBoolean("indexed");
//inherited
public final DateTimePath modificationDate = _super.modificationDate;
//inherited
public final StringPath modifiedBy = _super.modifiedBy;
public final BooleanPath multiValued = createBoolean("multiValued");
public final StringPath name = createString("name");
public final BooleanPath primaryKey = createBoolean("primaryKey");
public final BooleanPath readable = createBoolean("readable");
public final QTargetSystem targetSystem;
public final BooleanPath unique = createBoolean("unique");
public final BooleanPath writable = createBoolean("writable");
public QTargetSystemAttribute(String variable) {
this(TargetSystemAttribute.class, forVariable(variable), INITS);
}
public QTargetSystemAttribute(Path extends TargetSystemAttribute> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}
public QTargetSystemAttribute(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}
public QTargetSystemAttribute(PathMetadata metadata, PathInits inits) {
this(TargetSystemAttribute.class, metadata, inits);
}
public QTargetSystemAttribute(Class extends TargetSystemAttribute> type, PathMetadata metadata, PathInits inits) {
super(type, metadata, inits);
this.targetSystem = inits.isInitialized("targetSystem") ? new QTargetSystem(forProperty("targetSystem"), inits.get("targetSystem")) : null;
}
}