com.netgrif.application.engine.auth.domain.QAuthor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of application-engine Show documentation
Show all versions of application-engine Show documentation
System provides workflow management functions including user, role and data management.
package com.netgrif.application.engine.auth.domain;
import static com.querydsl.core.types.PathMetadataFactory.*;
import com.querydsl.core.types.dsl.*;
import com.querydsl.core.types.PathMetadata;
import javax.annotation.processing.Generated;
import com.querydsl.core.types.Path;
/**
* QAuthor is a Querydsl query type for Author
*/
@Generated("com.querydsl.codegen.DefaultEmbeddableSerializer")
public class QAuthor extends BeanPath {
private static final long serialVersionUID = 73146855L;
public static final QAuthor author = new QAuthor("author");
public final StringPath email = createString("email");
public final StringPath fullName = createString("fullName");
public final StringPath id = createString("id");
public QAuthor(String variable) {
super(Author.class, forVariable(variable));
}
public QAuthor(Path extends Author> path) {
super(path.getType(), path.getMetadata());
}
public QAuthor(PathMetadata metadata) {
super(Author.class, metadata);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy