com.thinkbiganalytics.metadata.jpa.sla.QJpaServiceLevelAgreementDescription Maven / Gradle / Ivy
package com.thinkbiganalytics.metadata.jpa.sla;
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;
import com.querydsl.core.types.dsl.PathInits;
/**
* QJpaServiceLevelAgreementDescription is a Querydsl query type for JpaServiceLevelAgreementDescription
*/
@Generated("com.querydsl.codegen.EntitySerializer")
public class QJpaServiceLevelAgreementDescription extends EntityPathBase {
private static final long serialVersionUID = 558225287L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QJpaServiceLevelAgreementDescription jpaServiceLevelAgreementDescription = new QJpaServiceLevelAgreementDescription("jpaServiceLevelAgreementDescription");
public final StringPath description = createString("description");
public final SetPath feeds = this.createSet("feeds", com.thinkbiganalytics.metadata.jpa.feed.JpaOpsManagerFeed.class, com.thinkbiganalytics.metadata.jpa.feed.QJpaOpsManagerFeed.class, PathInits.DIRECT2);
public final StringPath name = createString("name");
public final QServiceLevelAgreementDescriptionId slaId;
public QJpaServiceLevelAgreementDescription(String variable) {
this(JpaServiceLevelAgreementDescription.class, forVariable(variable), INITS);
}
public QJpaServiceLevelAgreementDescription(Path extends JpaServiceLevelAgreementDescription> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}
public QJpaServiceLevelAgreementDescription(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}
public QJpaServiceLevelAgreementDescription(PathMetadata metadata, PathInits inits) {
this(JpaServiceLevelAgreementDescription.class, metadata, inits);
}
public QJpaServiceLevelAgreementDescription(Class extends JpaServiceLevelAgreementDescription> type, PathMetadata metadata, PathInits inits) {
super(type, metadata, inits);
this.slaId = inits.isInitialized("slaId") ? new QServiceLevelAgreementDescriptionId(forProperty("slaId")) : null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy