/** * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this file, * You can obtain one at http://mozilla.org/MPL/2.0/. */ package org.mifosplatform.infrastructure.core.domain; public class EmailDetail { private final String organisationName; private final String username; private final String contactName; private final String address; public EmailDetail(final String organisationName, final String contactName, final String address, final String username) { this.organisationName = organisationName; this.contactName = contactName; this.address = address; this.username = username; } public String getOrganisationName() { return this.organisationName; } public String getUsername() { return this.username; } public String getContactName() { return this.contactName; } public String getAddress() { return this.address; } }