All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.capitalone.dashboard.model.QRequestLog Maven / Gradle / Ivy

There is a newer version: 4.0.2
Show newest version
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;


/**
 * QRequestLog is a Querydsl query type for RequestLog
 */
@Generated("com.mysema.query.codegen.EntitySerializer")
public class QRequestLog extends EntityPathBase {

    private static final long serialVersionUID = 1262806935L;

    private static final PathInits INITS = PathInits.DIRECT2;

    public static final QRequestLog requestLog = new QRequestLog("requestLog");

    public final QBaseModel _super;

    public final StringPath client = createString("client");

    public final StringPath endpoint = createString("endpoint");

    // inherited
    public final org.bson.types.QObjectId id;

    public final StringPath method = createString("method");

    public final StringPath parameter = createString("parameter");

    public final SimplePath requestBody = createSimple("requestBody", Object.class);

    public final StringPath requestContentType = createString("requestContentType");

    public final NumberPath requestSize = createNumber("requestSize", Long.class);

    public final SimplePath responseBody = createSimple("responseBody", Object.class);

    public final NumberPath responseCode = createNumber("responseCode", Integer.class);

    public final StringPath responseContentType = createString("responseContentType");

    public final NumberPath responseSize = createNumber("responseSize", Long.class);

    public final NumberPath responseTime = createNumber("responseTime", Long.class);

    public final NumberPath timestamp = createNumber("timestamp", Long.class);

    public QRequestLog(String variable) {
        this(RequestLog.class, forVariable(variable), INITS);
    }

    public QRequestLog(Path path) {
        this(path.getType(), path.getMetadata(), path.getMetadata().isRoot() ? INITS : PathInits.DEFAULT);
    }

    public QRequestLog(PathMetadata metadata) {
        this(metadata, metadata.isRoot() ? INITS : PathInits.DEFAULT);
    }

    public QRequestLog(PathMetadata metadata, PathInits inits) {
        this(RequestLog.class, metadata, inits);
    }

    public QRequestLog(Class type, PathMetadata metadata, PathInits inits) {
        super(type, metadata, inits);
        this._super = new QBaseModel(type, metadata, inits);
        this.id = _super.id;
    }

}