be.personify.iam.model.util.QSystemProperty Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of personify-model Show documentation
Show all versions of personify-model Show documentation
a possible model for personify
package be.personify.iam.model.util;
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;
/**
* QSystemProperty is a Querydsl query type for SystemProperty
*/
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QSystemProperty extends EntityPathBase {
private static final long serialVersionUID = 537342272L;
public static final QSystemProperty systemProperty = new QSystemProperty("systemProperty");
public final QPersisted _super = new QPersisted(this);
//inherited
public final StringPath createdBy = _super.createdBy;
//inherited
public final DateTimePath creationDate = _super.creationDate;
public final NumberPath id = createNumber("id", Long.class);
public final StringPath key = createString("key");
//inherited
public final DateTimePath modificationDate = _super.modificationDate;
//inherited
public final StringPath modifiedBy = _super.modifiedBy;
public final EnumPath type = createEnum("type", SystemPropertyType.class);
public final StringPath value = createString("value");
public QSystemProperty(String variable) {
super(SystemProperty.class, forVariable(variable));
}
public QSystemProperty(Path extends SystemProperty> path) {
super(path.getType(), path.getMetadata());
}
public QSystemProperty(PathMetadata metadata) {
super(SystemProperty.class, metadata);
}
}