io.gravitee.management.service.EmailNotification Maven / Gradle / Ivy
/**
* Copyright (C) 2015 The Gravitee team (http://gravitee.io)
*
* 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 io.gravitee.management.service;
import java.util.Map;
import java.util.Objects;
/**
* @author Azize Elamrani (azize dot elamrani at gmail dot com)
*/
public class EmailNotification {
private String from;
private String[] to;
private String subject;
private String content;
private Map params;
public String getFrom() {
return from;
}
public void setFrom(String from) {
this.from = from;
}
public String[] getTo() {
return to;
}
public void setTo(String... to) {
this.to = to;
}
public String getSubject() {
return subject;
}
public void setSubject(String subject) {
this.subject = subject;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
public Map getParams() {
return params;
}
public void setParams(Map params) {
this.params = params;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (!(o instanceof EmailNotification)) return false;
EmailNotification that = (EmailNotification) o;
return Objects.equals(from, that.from) &&
Objects.equals(to, that.to) &&
Objects.equals(subject, that.subject) &&
Objects.equals(content, that.content) &&
Objects.equals(params, that.params);
}
@Override
public int hashCode() {
return Objects.hash(from, to, subject, content, params);
}
@Override
public String toString() {
return "EmailNotification{" +
"from='" + from + '\'' +
", to='" + to + '\'' +
", subject='" + subject + '\'' +
", content='" + content + '\'' +
", params=" + params +
'}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy