Back to project page Android-Universal-Notifier.
The source code is released under:
Apache License
If you think the Android project Android-Universal-Notifier listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.mairos.universalnotifier.model; /*from w ww. j a va2 s . co m*/ public class AttachmentData { public static final String FTP_TYPE = "ftp"; public static final String WEB_TYPE = "web"; public static final String FS_TYPE = "file_system"; private String m_type = ""; private String m_path = ""; private String m_login = ""; private String m_password = ""; private String m_fileName = ""; public String getType() { return m_type; } public String getPath() { return m_path; } public String getLogin() { return m_login; } public String getPassword() { return m_password; } public String getFileName() { return m_fileName; } public AttachmentData(String f_type, String f_path, String f_login, String f_password, String f_fileName) { m_type = f_type; m_path = f_path; m_login = f_login; m_password = f_password; m_fileName = f_fileName; } }