From 3a4d879309a982ed3bd2d91be55f4e09ab965a26 Mon Sep 17 00:00:00 2001 From: Umberto Furno Date: Tue, 12 Nov 2019 15:52:40 +0100 Subject: [PATCH] Add class UserProfile --- .../wekan/wrapper/entity/UserProfile.java | 204 ++++++++++++++++++ 1 file changed, 204 insertions(+) create mode 100644 wrapper/src/main/java/wekan/wrapper/entity/UserProfile.java diff --git a/wrapper/src/main/java/wekan/wrapper/entity/UserProfile.java b/wrapper/src/main/java/wekan/wrapper/entity/UserProfile.java new file mode 100644 index 0000000..aeb0f39 --- /dev/null +++ b/wrapper/src/main/java/wekan/wrapper/entity/UserProfile.java @@ -0,0 +1,204 @@ +package wekan.wrapper.entity; + +import java.util.List; + +public class UserProfile { + + public String getAvatarUrl() { + return avatarUrl; + } + + public void setAvatarUrl(String avatarUrl) { + this.avatarUrl = avatarUrl; + } + + public List getEmailBuffer() { + return emailBuffer; + } + + public void setEmailBuffer(List emailBuffer) { + this.emailBuffer = emailBuffer; + } + + public String getFullname() { + return fullname; + } + + public void setFullname(String fullname) { + this.fullname = fullname; + } + + public boolean isShowDesktopDragHandles() { + return showDesktopDragHandles; + } + + public void setShowDesktopDragHandles(boolean showDesktopDragHandles) { + this.showDesktopDragHandles = showDesktopDragHandles; + } + + public boolean isHiddenSystemMessages() { + return hiddenSystemMessages; + } + + public void setHiddenSystemMessages(boolean hiddenSystemMessages) { + this.hiddenSystemMessages = hiddenSystemMessages; + } + + public boolean isHiddenMinicardLabelText() { + return hiddenMinicardLabelText; + } + + public void setHiddenMinicardLabelText(boolean hiddenMinicardLabelText) { + this.hiddenMinicardLabelText = hiddenMinicardLabelText; + } + + public String getInitials() { + return initials; + } + + public void setInitials(String initials) { + this.initials = initials; + } + + public List getInvitedBoards() { + return invitedBoards; + } + + public void setInvitedBoards(List invitedBoards) { + this.invitedBoards = invitedBoards; + } + + public String getLanguage() { + return language; + } + + public void setLanguage(String language) { + this.language = language; + } + + public List getNotifications() { + return notifications; + } + + public void setNotifications(List notifications) { + this.notifications = notifications; + } + + public int getShowCardsCountAt() { + return showCardsCountAt; + } + + public void setShowCardsCountAt(int showCardsCountAt) { + this.showCardsCountAt = showCardsCountAt; + } + + public List getStarredBoards() { + return starredBoards; + } + + public void setStarredBoards(List starredBoards) { + this.starredBoards = starredBoards; + } + + public String getIcode() { + return icode; + } + + public void setIcode(String icode) { + this.icode = icode; + } + + public BoardView getBoardView() { + return boardView; + } + + public void setBoardView(BoardView boardView) { + this.boardView = boardView; + } + + public ListSortBy getListSortBy() { + return listSortBy; + } + + public void setListSortBy(ListSortBy listSortBy) { + this.listSortBy = listSortBy; + } + + public String getTemplatesBoardId() { + return templatesBoardId; + } + + public void setTemplatesBoardId(String templatesBoardId) { + this.templatesBoardId = templatesBoardId; + } + + public String getCardTemplatesSwimlaneId() { + return cardTemplatesSwimlaneId; + } + + public void setCardTemplatesSwimlaneId(String cardTemplatesSwimlaneId) { + this.cardTemplatesSwimlaneId = cardTemplatesSwimlaneId; + } + + public String getListTemplatesSwimlaneId() { + return listTemplatesSwimlaneId; + } + + public void setListTemplatesSwimlaneId(String listTemplatesSwimlaneId) { + this.listTemplatesSwimlaneId = listTemplatesSwimlaneId; + } + + public String getBoardTemplatesSwimlaneId() { + return boardTemplatesSwimlaneId; + } + + public void setBoardTemplatesSwimlaneId(String boardTemplatesSwimlaneId) { + this.boardTemplatesSwimlaneId = boardTemplatesSwimlaneId; + } + + @Override + public String toString() { + return "UserProfile{" + + "avatarUrl='" + avatarUrl + '\'' + + ", emailBuffer=" + emailBuffer + + ", fullname='" + fullname + '\'' + + ", showDesktopDragHandles=" + showDesktopDragHandles + + ", hiddenSystemMessages=" + hiddenSystemMessages + + ", hiddenMinicardLabelText=" + hiddenMinicardLabelText + + ", initials='" + initials + '\'' + + ", invitedBoards=" + invitedBoards + + ", language='" + language + '\'' + + ", notifications=" + notifications + + ", showCardsCountAt=" + showCardsCountAt + + ", starredBoards=" + starredBoards + + ", icode='" + icode + '\'' + + ", boardView=" + boardView + + ", listSortBy=" + listSortBy + + ", templatesBoardId='" + templatesBoardId + '\'' + + ", cardTemplatesSwimlaneId='" + cardTemplatesSwimlaneId + '\'' + + ", listTemplatesSwimlaneId='" + listTemplatesSwimlaneId + '\'' + + ", boardTemplatesSwimlaneId='" + boardTemplatesSwimlaneId + '\'' + + '}'; + } + + private String avatarUrl; + private List emailBuffer; + private String fullname; + private boolean showDesktopDragHandles; + private boolean hiddenSystemMessages; + private boolean hiddenMinicardLabelText; + private String initials; + private List invitedBoards; + private String language; + private List notifications; + private int showCardsCountAt; + private List starredBoards; + private String icode; + private BoardView boardView; + private ListSortBy listSortBy; + private String templatesBoardId; + private String cardTemplatesSwimlaneId; + private String listTemplatesSwimlaneId; + private String boardTemplatesSwimlaneId; + +}