be.personify.iam.model.provisioning.QTargetSystemLink 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;
/**
* QTargetSystemLink is a Querydsl query type for TargetSystemLink
*/
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QTargetSystemLink extends EntityPathBase {
private static final long serialVersionUID = -1086580533L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QTargetSystemLink targetSystemLink = new QTargetSystemLink("targetSystemLink");
public final be.personify.iam.model.util.QPersisted _super = new be.personify.iam.model.util.QPersisted(this);
public final StringPath accountId = createString("accountId");
public final StringPath accountType = createString("accountType");
//inherited
public final StringPath createdBy = _super.createdBy;
//inherited
public final DateTimePath creationDate = _super.creationDate;
public final StringPath externalId = createString("externalId");
public final NumberPath id = createNumber("id", Long.class);
//inherited
public final DateTimePath modificationDate = _super.modificationDate;
//inherited
public final StringPath modifiedBy = _super.modifiedBy;
public final QTargetSystem targetSystem;
public QTargetSystemLink(String variable) {
this(TargetSystemLink.class, forVariable(variable), INITS);
}
public QTargetSystemLink(Path extends TargetSystemLink> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}
public QTargetSystemLink(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}
public QTargetSystemLink(PathMetadata metadata, PathInits inits) {
this(TargetSystemLink.class, metadata, inits);
}
public QTargetSystemLink(Class extends TargetSystemLink> type, PathMetadata metadata, PathInits inits) {
super(type, metadata, inits);
this.targetSystem = inits.isInitialized("targetSystem") ? new QTargetSystem(forProperty("targetSystem"), inits.get("targetSystem")) : null;
}
}