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

org.springframework.data.jpa.domain.QAbstractAuditable Maven / Gradle / Ivy

There is a newer version: 3.3.1
Show newest version
package org.springframework.data.jpa.domain;

import static com.querydsl.core.types.PathMetadataFactory.*;

import com.querydsl.core.types.dsl.*;

import com.querydsl.core.types.PathMetadata;
import javax.annotation.Generated;
import com.querydsl.core.types.Path;


/**
 * QAbstractAuditable is a Querydsl query type for AbstractAuditable
 */
@Generated("com.querydsl.codegen.SupertypeSerializer")
public class QAbstractAuditable extends EntityPathBase> {

    private static final long serialVersionUID = 1561562297L;

    public static final QAbstractAuditable abstractAuditable = new QAbstractAuditable("abstractAuditable");

    public final QAbstractPersistable _super = new QAbstractPersistable(this);

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

    public final DateTimePath createdDate = createDateTime("createdDate", java.util.Date.class);

    //inherited
    public final SimplePath id = _super.id;

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

    public final DateTimePath lastModifiedDate = createDateTime("lastModifiedDate", java.util.Date.class);

    @SuppressWarnings({"all", "rawtypes", "unchecked"})
    public QAbstractAuditable(String variable) {
        super((Class) AbstractAuditable.class, forVariable(variable));
    }

    @SuppressWarnings({"all", "rawtypes", "unchecked"})
    public QAbstractAuditable(Path path) {
        super((Class) path.getType(), path.getMetadata());
    }

    @SuppressWarnings({"all", "rawtypes", "unchecked"})
    public QAbstractAuditable(PathMetadata metadata) {
        super((Class) AbstractAuditable.class, metadata);
    }

}