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

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


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

    private static final long serialVersionUID = 896713774L;

    public static final QApplication application = new QApplication("application");

    public final ListPath components = this.createList("components", Component.class, QComponent.class, PathInits.DIRECT2);

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

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

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

    public QApplication(String variable) {
        super(Application.class, forVariable(variable));
    }

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

    public QApplication(PathMetadata metadata) {
        super(Application.class, metadata);
    }

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy