| | |
| | | import java.util.Map; |
| | | import java.util.TreeMap; |
| | | |
| | | import com.gitblit.Constants.Transport; |
| | | import com.gitblit.utils.StringUtils; |
| | | |
| | | /** |
| | |
| | | private String locale; |
| | | |
| | | private Boolean emailMeOnMyTicketChanges; |
| | | |
| | | private Transport transport; |
| | | |
| | | private final Map<String, UserRepositoryPreferences> repositoryPreferences = new TreeMap<String, UserRepositoryPreferences>(); |
| | | |
| | |
| | | public void setEmailMeOnMyTicketChanges(boolean value) { |
| | | this.emailMeOnMyTicketChanges = value; |
| | | } |
| | | |
| | | public Transport getTransport() { |
| | | return transport; |
| | | } |
| | | |
| | | public void setTransport(Transport transport) { |
| | | this.transport = transport; |
| | | } |
| | | } |