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

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


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

    private static final long serialVersionUID = -2126592536L;

    public static final QCollectionError collectionError = new QCollectionError("collectionError");

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

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

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

    public QCollectionError(String variable) {
        super(CollectionError.class, forVariable(variable));
    }

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

    public QCollectionError(PathMetadata metadata) {
        super(CollectionError.class, metadata);
    }

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy