blob: 8dfda5aa86ae0dda3e45b947358dfc879c2a96b9 [file] [log] [blame]
/*********************************************************************
* Copyright (c) 2013 Boeing
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Boeing - initial API and implementation
**********************************************************************/
package org.eclipse.osee.ats.rest.internal.notify;
import org.eclipse.osee.ats.api.AtsApi;
import org.eclipse.osee.ats.core.notify.AbstractAtsNotificationService;
import org.eclipse.osee.framework.core.util.OseeEmail;
/**
* @author Donald G. Dunne
*/
public class AtsNotificationServiceImpl extends AbstractAtsNotificationService {
public AtsNotificationServiceImpl(AtsApi atsApi) {
super(atsApi);
}
@Override
public OseeEmail createOseeEmail() {
return OseeEmailServer.create();
}
}