parent
c88cfe904e
commit
1b0f81d30a
@ -1,27 +1,35 @@ |
|||||||
package org.example.objects; |
package org.example.objects; |
||||||
|
|
||||||
|
import org.example.models.Post; |
||||||
|
import org.example.models.User; |
||||||
|
|
||||||
|
import java.util.List; |
||||||
|
|
||||||
public class SearchDTO { |
public class SearchDTO { |
||||||
private String username; |
private List<Post> posts; |
||||||
private String title; |
private List<User> users; |
||||||
|
|
||||||
|
public SearchDTO() { |
||||||
|
} |
||||||
|
|
||||||
public SearchDTO(String username, String title) { |
public SearchDTO(List<Post> posts, List<User> users) { |
||||||
this.username = username; |
this.posts = posts; |
||||||
this.title = title; |
this.users = users; |
||||||
} |
} |
||||||
|
|
||||||
public String getUsername() { |
public List<Post> getPosts() { |
||||||
return username; |
return posts; |
||||||
} |
} |
||||||
|
|
||||||
public void setUsername(String username) { |
public void setPosts(List<Post> posts) { |
||||||
this.username = username; |
this.posts = posts; |
||||||
} |
} |
||||||
|
|
||||||
public String getTitle() { |
public List<User> getUsers() { |
||||||
return title; |
return users; |
||||||
} |
} |
||||||
|
|
||||||
public void setTitle(String title) { |
public void setUsers(List<User> users) { |
||||||
this.title = title; |
this.users = users; |
||||||
} |
} |
||||||
} |
} |
||||||
|
@ -0,0 +1,30 @@ |
|||||||
|
package org.example.queryresults; |
||||||
|
|
||||||
|
import org.example.models.Post; |
||||||
|
import org.example.models.User; |
||||||
|
|
||||||
|
public class SearchQueryResult { |
||||||
|
// private Post post;
|
||||||
|
private User user; |
||||||
|
|
||||||
|
public SearchQueryResult(Post post, User user) { |
||||||
|
// this.post = post;
|
||||||
|
this.user = user; |
||||||
|
} |
||||||
|
|
||||||
|
// public Post getPost() {
|
||||||
|
// return post;
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// public void setPost(Post post) {
|
||||||
|
// this.post = post;
|
||||||
|
// }
|
||||||
|
|
||||||
|
public User getUser() { |
||||||
|
return user; |
||||||
|
} |
||||||
|
|
||||||
|
public void setUser(User user) { |
||||||
|
this.user = user; |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue