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

com.capitalone.dashboard.model.QReview 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;


/**
 * QReview is a Querydsl query type for Review
 */
@Generated("com.mysema.query.codegen.EmbeddableSerializer")
public class QReview extends BeanPath {

    private static final long serialVersionUID = 1512039866L;

    public static final QReview review = new QReview("review");

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

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

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

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

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

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

    public QReview(String variable) {
        super(Review.class, forVariable(variable));
    }

    public QReview(Path path) {
        super(path.getType(), path.getMetadata());
    }

    public QReview(PathMetadata metadata) {
        super(Review.class, metadata);
    }

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy