com.netgrif.application.engine.petrinet.domain.dataset.QStorage 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.petrinet.domain.dataset;
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;
/**
* QStorage is a Querydsl query type for Storage
*/
@Generated("com.querydsl.codegen.DefaultEmbeddableSerializer")
public class QStorage extends BeanPath {
private static final long serialVersionUID = 1184118442L;
public static final QStorage storage = new QStorage("storage");
public final StringPath host = createString("host");
public final StringPath type = createString("type");
public QStorage(String variable) {
super(Storage.class, forVariable(variable));
}
public QStorage(Path extends Storage> path) {
super(path.getType(), path.getMetadata());
}
public QStorage(PathMetadata metadata) {
super(Storage.class, metadata);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy