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

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


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

    private static final long serialVersionUID = -520958915L;

    public static final QComment comment = new QComment("comment");

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

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

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

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

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

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

    public QComment(String variable) {
        super(Comment.class, forVariable(variable));
    }

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

    public QComment(PathMetadata metadata) {
        super(Comment.class, metadata);
    }

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy