be.personify.iam.model.vault.QNotification 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;
import com.querydsl.core.types.dsl.PathInits;
/**
* QNotification is a Querydsl query type for Notification
*/
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QNotification extends EntityPathBase {
private static final long serialVersionUID = 1604171959L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QNotification notification = new QNotification("notification");
public final be.personify.iam.model.util.QPersisted _super = new be.personify.iam.model.util.QPersisted(this);
public final StringPath bodyContent = createString("bodyContent");
//inherited
public final StringPath createdBy = _super.createdBy;
//inherited
public final DateTimePath creationDate = _super.creationDate;
public final NumberPath id = createNumber("id", Long.class);
public final QIdentity identity;
//inherited
public final DateTimePath modificationDate = _super.modificationDate;
//inherited
public final StringPath modifiedBy = _super.modifiedBy;
public final QNotificationGroup notificationGroup;
public final StringPath notificationSentDetail = createString("notificationSentDetail");
public final EnumPath notificationSentStatus = createEnum("notificationSentStatus", NotificationSentStatus.class);
public final EnumPath notificationType = createEnum("notificationType", NotificationType.class);
public final DateTimePath sendDate = createDateTime("sendDate", java.util.Date.class);
public final BooleanPath sent = createBoolean("sent");
public final StringPath subject = createString("subject");
public QNotification(String variable) {
this(Notification.class, forVariable(variable), INITS);
}
public QNotification(Path extends Notification> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}
public QNotification(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}
public QNotification(PathMetadata metadata, PathInits inits) {
this(Notification.class, metadata, inits);
}
public QNotification(Class extends Notification> type, PathMetadata metadata, PathInits inits) {
super(type, metadata, inits);
this.identity = inits.isInitialized("identity") ? new QIdentity(forProperty("identity"), inits.get("identity")) : null;
this.notificationGroup = inits.isInitialized("notificationGroup") ? new QNotificationGroup(forProperty("notificationGroup")) : null;
}
}