be.personify.iam.model.vault.QVaultSystemProperty 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.vault;
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;
/**
* QVaultSystemProperty is a Querydsl query type for VaultSystemProperty
*/
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QVaultSystemProperty extends EntityPathBase {
private static final long serialVersionUID = -1180989782L;
public static final QVaultSystemProperty vaultSystemProperty = new QVaultSystemProperty("vaultSystemProperty");
public final be.personify.iam.model.util.QPersisted _super = new be.personify.iam.model.util.QPersisted(this);
public final BooleanPath confidential = createBoolean("confidential");
//inherited
public final StringPath createdBy = _super.createdBy;
//inherited
public final DateTimePath creationDate = _super.creationDate;
public final StringPath group = createString("group");
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", be.personify.iam.model.util.SystemPropertyType.class);
public final StringPath value = createString("value");
public QVaultSystemProperty(String variable) {
super(VaultSystemProperty.class, forVariable(variable));
}
public QVaultSystemProperty(Path extends VaultSystemProperty> path) {
super(path.getType(), path.getMetadata());
}
public QVaultSystemProperty(PathMetadata metadata) {
super(VaultSystemProperty.class, metadata);
}
}