Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor/directory #52

Merged
merged 2 commits into from
Jul 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
55 changes: 55 additions & 0 deletions src/main/generated/cos/peerna/domain/history/model/QHistory.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
package cos.peerna.domain.history.model;

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;


/**
* QHistory is a Querydsl query type for History
*/
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QHistory extends EntityPathBase<History> {

private static final long serialVersionUID = 1033190653L;

private static final PathInits INITS = PathInits.DIRECT2;

public static final QHistory history = new QHistory("history");

public final NumberPath<Long> id = createNumber("id", Long.class);

public final BooleanPath isSolved = createBoolean("isSolved");

public final cos.peerna.domain.problem.model.QProblem problem;

public final DatePath<java.time.LocalDate> time = createDate("time", java.time.LocalDate.class);

public QHistory(String variable) {
this(History.class, forVariable(variable), INITS);
}

public QHistory(Path<? extends History> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}

public QHistory(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}

public QHistory(PathMetadata metadata, PathInits inits) {
this(History.class, metadata, inits);
}

public QHistory(Class<? extends History> type, PathMetadata metadata, PathInits inits) {
super(type, metadata, inits);
this.problem = inits.isInitialized("problem") ? new cos.peerna.domain.problem.model.QProblem(forProperty("problem")) : null;
}

}

55 changes: 55 additions & 0 deletions src/main/generated/cos/peerna/domain/keyword/model/QKeyword.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
package cos.peerna.domain.keyword.model;

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;


/**
* QKeyword is a Querydsl query type for Keyword
*/
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QKeyword extends EntityPathBase<Keyword> {

private static final long serialVersionUID = 499267303L;

private static final PathInits INITS = PathInits.DIRECT2;

public static final QKeyword keyword = new QKeyword("keyword");

public final NumberPath<Long> count = createNumber("count", Long.class);

public final NumberPath<Long> id = createNumber("id", Long.class);

public final StringPath name = createString("name");

public final cos.peerna.domain.problem.model.QProblem problem;

public QKeyword(String variable) {
this(Keyword.class, forVariable(variable), INITS);
}

public QKeyword(Path<? extends Keyword> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}

public QKeyword(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}

public QKeyword(PathMetadata metadata, PathInits inits) {
this(Keyword.class, metadata, inits);
}

public QKeyword(Class<? extends Keyword> type, PathMetadata metadata, PathInits inits) {
super(type, metadata, inits);
this.problem = inits.isInitialized("problem") ? new cos.peerna.domain.problem.model.QProblem(forProperty("problem")) : null;
}

}

Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
package cos.peerna.domain.notification.model;

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<Notification> {

private static final long serialVersionUID = -1228613189L;

private static final PathInits INITS = PathInits.DIRECT2;

public static final QNotification notification = new QNotification("notification");

public final cos.peerna.domain.user.model.QUser follower;

public final NumberPath<Long> id = createNumber("id", Long.class);

public final StringPath msg = createString("msg");

public final cos.peerna.domain.reply.model.QReply reply;

public final DatePath<java.time.LocalDate> time = createDate("time", java.time.LocalDate.class);

public final EnumPath<NotificationType> type = createEnum("type", NotificationType.class);

public final cos.peerna.domain.user.model.QUser user;

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.follower = inits.isInitialized("follower") ? new cos.peerna.domain.user.model.QUser(forProperty("follower"), inits.get("follower")) : null;
this.reply = inits.isInitialized("reply") ? new cos.peerna.domain.reply.model.QReply(forProperty("reply"), inits.get("reply")) : null;
this.user = inits.isInitialized("user") ? new cos.peerna.domain.user.model.QUser(forProperty("user"), inits.get("user")) : null;
}

}

43 changes: 43 additions & 0 deletions src/main/generated/cos/peerna/domain/problem/model/QProblem.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
package cos.peerna.domain.problem.model;

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;


/**
* QProblem is a Querydsl query type for Problem
*/
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QProblem extends EntityPathBase<Problem> {

private static final long serialVersionUID = -675280429L;

public static final QProblem problem = new QProblem("problem");

public final StringPath answer = createString("answer");

public final EnumPath<cos.peerna.domain.user.model.Category> category = createEnum("category", cos.peerna.domain.user.model.Category.class);

public final NumberPath<Long> id = createNumber("id", Long.class);

public final StringPath question = createString("question");

public QProblem(String variable) {
super(Problem.class, forVariable(variable));
}

public QProblem(Path<? extends Problem> path) {
super(path.getType(), path.getMetadata());
}

public QProblem(PathMetadata metadata) {
super(Problem.class, metadata);
}

}

54 changes: 54 additions & 0 deletions src/main/generated/cos/peerna/domain/reply/model/QLikey.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
package cos.peerna.domain.reply.model;

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;


/**
* QLikey is a Querydsl query type for Likey
*/
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QLikey extends EntityPathBase<Likey> {

private static final long serialVersionUID = 684714433L;

private static final PathInits INITS = PathInits.DIRECT2;

public static final QLikey likey = new QLikey("likey");

public final NumberPath<Long> id = createNumber("id", Long.class);

public final QReply reply;

public final cos.peerna.domain.user.model.QUser user;

public QLikey(String variable) {
this(Likey.class, forVariable(variable), INITS);
}

public QLikey(Path<? extends Likey> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}

public QLikey(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}

public QLikey(PathMetadata metadata, PathInits inits) {
this(Likey.class, metadata, inits);
}

public QLikey(Class<? extends Likey> type, PathMetadata metadata, PathInits inits) {
super(type, metadata, inits);
this.reply = inits.isInitialized("reply") ? new QReply(forProperty("reply"), inits.get("reply")) : null;
this.user = inits.isInitialized("user") ? new cos.peerna.domain.user.model.QUser(forProperty("user"), inits.get("user")) : null;
}

}

65 changes: 65 additions & 0 deletions src/main/generated/cos/peerna/domain/reply/model/QReply.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
package cos.peerna.domain.reply.model;

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;


/**
* QReply is a Querydsl query type for Reply
*/
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QReply extends EntityPathBase<Reply> {

private static final long serialVersionUID = 690141417L;

private static final PathInits INITS = PathInits.DIRECT2;

public static final QReply reply = new QReply("reply");

public final StringPath answer = createString("answer");

public final cos.peerna.domain.history.model.QHistory history;

public final NumberPath<Long> id = createNumber("id", Long.class);

public final BooleanPath isRequested = createBoolean("isRequested");

public final NumberPath<Long> likeCount = createNumber("likeCount", Long.class);

public final ListPath<Likey, QLikey> likes = this.<Likey, QLikey>createList("likes", Likey.class, QLikey.class, PathInits.DIRECT2);

public final cos.peerna.domain.problem.model.QProblem problem;

public final cos.peerna.domain.user.model.QUser user;

public QReply(String variable) {
this(Reply.class, forVariable(variable), INITS);
}

public QReply(Path<? extends Reply> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}

public QReply(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}

public QReply(PathMetadata metadata, PathInits inits) {
this(Reply.class, metadata, inits);
}

public QReply(Class<? extends Reply> type, PathMetadata metadata, PathInits inits) {
super(type, metadata, inits);
this.history = inits.isInitialized("history") ? new cos.peerna.domain.history.model.QHistory(forProperty("history"), inits.get("history")) : null;
this.problem = inits.isInitialized("problem") ? new cos.peerna.domain.problem.model.QProblem(forProperty("problem")) : null;
this.user = inits.isInitialized("user") ? new cos.peerna.domain.user.model.QUser(forProperty("user"), inits.get("user")) : null;
}

}

57 changes: 57 additions & 0 deletions src/main/generated/cos/peerna/domain/room/model/QChat.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
package cos.peerna.domain.room.model;

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;


/**
* QChat is a Querydsl query type for Chat
*/
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QChat extends EntityPathBase<Chat> {

private static final long serialVersionUID = -1618145736L;

private static final PathInits INITS = PathInits.DIRECT2;

public static final QChat chat = new QChat("chat");

public final StringPath content = createString("content");

public final cos.peerna.domain.history.model.QHistory history;

public final NumberPath<Long> id = createNumber("id", Long.class);

public final TimePath<java.time.LocalTime> time = createTime("time", java.time.LocalTime.class);

public final NumberPath<Long> writerId = createNumber("writerId", Long.class);

public QChat(String variable) {
this(Chat.class, forVariable(variable), INITS);
}

public QChat(Path<? extends Chat> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}

public QChat(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}

public QChat(PathMetadata metadata, PathInits inits) {
this(Chat.class, metadata, inits);
}

public QChat(Class<? extends Chat> type, PathMetadata metadata, PathInits inits) {
super(type, metadata, inits);
this.history = inits.isInitialized("history") ? new cos.peerna.domain.history.model.QHistory(forProperty("history"), inits.get("history")) : null;
}

}

Loading