be.personify.iam.model.provisioning.QTargetSystemAttributeMapping 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;
/**
* QTargetSystemAttributeMapping is a Querydsl query type for TargetSystemAttributeMapping
*/
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QTargetSystemAttributeMapping extends EntityPathBase {
private static final long serialVersionUID = -1197025821L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QTargetSystemAttributeMapping targetSystemAttributeMapping = new QTargetSystemAttributeMapping("targetSystemAttributeMapping");
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);
public final StringPath localName = createString("localName");
//inherited
public final DateTimePath modificationDate = _super.modificationDate;
//inherited
public final StringPath modifiedBy = _super.modifiedBy;
public final StringPath remoteName = createString("remoteName");
public final QTargetSystem targetSystem;
public final QTargetSystemAttribute targetSystemAttribute;
public QTargetSystemAttributeMapping(String variable) {
this(TargetSystemAttributeMapping.class, forVariable(variable), INITS);
}
public QTargetSystemAttributeMapping(Path extends TargetSystemAttributeMapping> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}
public QTargetSystemAttributeMapping(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}
public QTargetSystemAttributeMapping(PathMetadata metadata, PathInits inits) {
this(TargetSystemAttributeMapping.class, metadata, inits);
}
public QTargetSystemAttributeMapping(Class extends TargetSystemAttributeMapping> type, PathMetadata metadata, PathInits inits) {
super(type, metadata, inits);
this.targetSystem = inits.isInitialized("targetSystem") ? new QTargetSystem(forProperty("targetSystem"), inits.get("targetSystem")) : null;
this.targetSystemAttribute = inits.isInitialized("targetSystemAttribute") ? new QTargetSystemAttribute(forProperty("targetSystemAttribute"), inits.get("targetSystemAttribute")) : null;
}
}