/* * Copyright 2015-2016 OpenCB * * Licensed 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 org.opencb.opencga.catalog.config; /** * Created by imedina on 16/03/16. */ public class Email { private String host; private String port; private String user; private String password; private String from; private boolean ssl; public Email() { } public Email(String host, String port, String user, String password, String from, boolean ssl) { this.host = host; this.port = port; this.user = user; this.password = password; this.from = from; this.ssl = ssl; } @Override public String toString() { final StringBuilder sb = new StringBuilder("EmailServerConfiguration{"); sb.append("from='").append(from).append('\''); sb.append(", host='").append(host).append('\''); sb.append(", port='").append(port).append('\''); sb.append(", user='").append(user).append('\''); sb.append(", password='").append(password).append('\''); sb.append(", ssl=").append(ssl); sb.append('}'); return sb.toString(); } public String getHost() { return host; } public void setHost(String host) { this.host = host; } public String getPort() { return port; } public void setPort(String port) { this.port = port; } public String getUser() { return user; } public void setUser(String user) { this.user = user; } public String getPassword() { return password; } public void setPassword(String password) { this.password = password; } public String getFrom() { return from; } public void setFrom(String from) { this.from = from; } public boolean isSsl() { return ssl; } public void setSsl(boolean ssl) { this.ssl = ssl; } }