
org.jlot.mailing.DTO.PushNotificationSupportDTO Maven / Gradle / Ivy
package org.jlot.mailing.DTO;
import java.util.Locale;
import java.util.Map;
/**
* This class carries the information related to the current PUSH action Both
* maps state for each of this project's languages if the translation and review
* was done or not
*
* @author vlstr
*
*/
public class PushNotificationSupportDTO
{
private Map isTranslationDoneBeforePush;
private Map isTranslationDoneAfterPush;
public PushNotificationSupportDTO ()
{
isTranslationDoneBeforePush = null;
isTranslationDoneAfterPush = null;
}
public Map getIsTranslationDoneBeforePush ( )
{
return isTranslationDoneBeforePush;
}
public void setIsTranslationDoneBeforePush ( Map isTranslationDoneBeforePush )
{
this.isTranslationDoneBeforePush = isTranslationDoneBeforePush;
}
public Map getIsTranslationDoneAfterPush ( )
{
return isTranslationDoneAfterPush;
}
public void setIsTranslationDoneAfterPush ( Map isTranslationDoneAfterPush )
{
this.isTranslationDoneAfterPush = isTranslationDoneAfterPush;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy