be.personify.iam.model.gateway.QGatewayTranslation 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.gateway;
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;
/**
* QGatewayTranslation is a Querydsl query type for GatewayTranslation
*/
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QGatewayTranslation extends EntityPathBase {
private static final long serialVersionUID = 809110343L;
public static final QGatewayTranslation gatewayTranslation = new QGatewayTranslation("gatewayTranslation");
public final be.personify.iam.model.util.QPersisted _super = new be.personify.iam.model.util.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");
public final StringPath locale = createString("locale");
//inherited
public final DateTimePath modificationDate = _super.modificationDate;
//inherited
public final StringPath modifiedBy = _super.modifiedBy;
public final StringPath type = createString("type");
public final StringPath value = createString("value");
public QGatewayTranslation(String variable) {
super(GatewayTranslation.class, forVariable(variable));
}
public QGatewayTranslation(Path extends GatewayTranslation> path) {
super(path.getType(), path.getMetadata());
}
public QGatewayTranslation(PathMetadata metadata) {
super(GatewayTranslation.class, metadata);
}
}