com.capitalone.dashboard.model.QCommit 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;
import com.mysema.query.types.path.PathInits;
/**
* QCommit is a Querydsl query type for Commit
*/
@Generated("com.mysema.query.codegen.EntitySerializer")
public class QCommit extends EntityPathBase {
private static final long serialVersionUID = 1091573657L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QCommit commit = new QCommit("commit");
public final QSCM _super = new QSCM(this);
public final org.bson.types.QObjectId collectorItemId;
//inherited
public final ListPath filesAdded = _super.filesAdded;
//inherited
public final ListPath filesModified = _super.filesModified;
//inherited
public final ListPath filesRemoved = _super.filesRemoved;
public final BooleanPath firstEverCommit = createBoolean("firstEverCommit");
public final org.bson.types.QObjectId id;
//inherited
public final NumberPath numberOfChanges = _super.numberOfChanges;
//inherited
public final StringPath pullNumber = _super.pullNumber;
//inherited
public final StringPath scmAuthor = _super.scmAuthor;
//inherited
public final StringPath scmAuthorLDAPDN = _super.scmAuthorLDAPDN;
//inherited
public final StringPath scmAuthorLogin = _super.scmAuthorLogin;
//inherited
public final StringPath scmAuthorType = _super.scmAuthorType;
//inherited
public final StringPath scmBranch = _super.scmBranch;
//inherited
public final StringPath scmCommitLog = _super.scmCommitLog;
//inherited
public final StringPath scmCommitter = _super.scmCommitter;
//inherited
public final StringPath scmCommitterLogin = _super.scmCommitterLogin;
//inherited
public final NumberPath scmCommitTimestamp = _super.scmCommitTimestamp;
//inherited
public final ListPath scmParentRevisionNumbers = _super.scmParentRevisionNumbers;
//inherited
public final StringPath scmRevisionNumber = _super.scmRevisionNumber;
//inherited
public final StringPath scmUrl = _super.scmUrl;
public final NumberPath timestamp = createNumber("timestamp", Long.class);
//inherited
public final EnumPath type = _super.type;
public QCommit(String variable) {
this(Commit.class, forVariable(variable), INITS);
}
public QCommit(Path extends Commit> path) {
this(path.getType(), path.getMetadata(), path.getMetadata().isRoot() ? INITS : PathInits.DEFAULT);
}
public QCommit(PathMetadata> metadata) {
this(metadata, metadata.isRoot() ? INITS : PathInits.DEFAULT);
}
public QCommit(PathMetadata> metadata, PathInits inits) {
this(Commit.class, metadata, inits);
}
public QCommit(Class extends Commit> type, PathMetadata> metadata, PathInits inits) {
super(type, metadata, inits);
this.collectorItemId = inits.isInitialized("collectorItemId") ? new org.bson.types.QObjectId(forProperty("collectorItemId")) : null;
this.id = inits.isInitialized("id") ? new org.bson.types.QObjectId(forProperty("id")) : null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy