parent
c88cfe904e
commit
1b0f81d30a
@ -1,27 +1,35 @@ |
||||
package org.example.objects; |
||||
|
||||
import org.example.models.Post; |
||||
import org.example.models.User; |
||||
|
||||
import java.util.List; |
||||
|
||||
public class SearchDTO { |
||||
private String username; |
||||
private String title; |
||||
|
||||
public SearchDTO(String username, String title) { |
||||
this.username = username; |
||||
this.title = title; |
||||
private List<Post> posts; |
||||
private List<User> users; |
||||
|
||||
public SearchDTO() { |
||||
} |
||||
|
||||
public SearchDTO(List<Post> posts, List<User> users) { |
||||
this.posts = posts; |
||||
this.users = users; |
||||
} |
||||
|
||||
public String getUsername() { |
||||
return username; |
||||
public List<Post> getPosts() { |
||||
return posts; |
||||
} |
||||
|
||||
public void setUsername(String username) { |
||||
this.username = username; |
||||
public void setPosts(List<Post> posts) { |
||||
this.posts = posts; |
||||
} |
||||
|
||||
public String getTitle() { |
||||
return title; |
||||
public List<User> getUsers() { |
||||
return users; |
||||
} |
||||
|
||||
public void setTitle(String title) { |
||||
this.title = title; |
||||
public void setUsers(List<User> users) { |
||||
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