/** * Copyright 2005-2016 Red Hat, Inc. * * Red Hat licenses this file to you under the Apache License, version * 2.0 (the "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or * implied. See the License for the specific language governing * permissions and limitations under the License. */ package io.fabric8.taiga; import java.util.List; /** */ public class UserDTO extends EntitySupport { private String username; private String fullName; private String fullNameDisplay; private String photo; private String bigPhoto; private String bio; private boolean isActive; private String defaultLanguage; private String defaultTimezone; private String color; public String getBigPhoto() { return bigPhoto; } public void setBigPhoto(String bigPhoto) { this.bigPhoto = bigPhoto; } public String getBio() { return bio; } public void setBio(String bio) { this.bio = bio; } public String getColor() { return color; } public void setColor(String color) { this.color = color; } public String getDefaultLanguage() { return defaultLanguage; } public void setDefaultLanguage(String defaultLanguage) { this.defaultLanguage = defaultLanguage; } public String getDefaultTimezone() { return defaultTimezone; } public void setDefaultTimezone(String defaultTimezone) { this.defaultTimezone = defaultTimezone; } public String getFullName() { return fullName; } public void setFullName(String fullName) { this.fullName = fullName; } public String getFullNameDisplay() { return fullNameDisplay; } public void setFullNameDisplay(String fullNameDisplay) { this.fullNameDisplay = fullNameDisplay; } public boolean isActive() { return isActive; } public void setIsActive(boolean isActive) { this.isActive = isActive; } public String getPhoto() { return photo; } public void setPhoto(String photo) { this.photo = photo; } public String getUsername() { return username; } public void setUsername(String username) { this.username = username; } }