| java.lang.Object com.knowgate.dataobjs.DBPersist com.knowgate.crm.DistributionList
All known Subclasses: com.knowgate.crm.DirectList,
DistributionList | public class DistributionList extends DBPersist (Code) | | Distribution List
author: Sergio Montoro Ten version: 3.0 |
ClassId | final public static short ClassId(Code) | | |
TYPE_BLACK | final public static short TYPE_BLACK(Code) | | |
TYPE_DIRECT | final public static short TYPE_DIRECT(Code) | | |
TYPE_DYNAMIC | final public static short TYPE_DYNAMIC(Code) | | |
TYPE_STATIC | final public static short TYPE_STATIC(Code) | | |
DistributionList | public DistributionList()(Code) | | |
DistributionList | public DistributionList(JDCConnection oConn, String sListGUID) throws SQLException(Code) | | Create and load distribution list
Parameters: oConn - JDCConnection HDBC Connection Parameters: sListGUID - String List GUID throws: SQLException - |
DistributionList | public DistributionList(JDCConnection oConn, String sListDesc, String sWorkAreaGUID) throws SQLException(Code) | | Create a distribution list and load its by name
Parameters: oConn - JDCConnection JDBC Connection Parameters: sListDesc - String List Description Parameters: sWorkAreaGUID - String GUID of WorkArea to which list belongs throws: SQLException - |
clone | public String clone(JDCConnection oConn) throws SQLException(Code) | | Clone this DistributionList.
The associated Black List, if it exists, is also cloned and associated to the new clone.
Parameters: oConn - Database Connection New DistributionList GUID throws: SQLException - |
contains | public boolean contains(JDCConnection oConn, String sMember) throws SQLException(Code) | | Find out if list contains a particular member
Member is searched at k_x_list_members table either at gu_company and
gu_contact or tx_email. If list is Dynamic or Static, member is searched at
gu_company and gu_contact. If list is Direct or Black, member is searched at tx_email
Parameters: oConn - Database Connection Parameters: sMember - If this is a Static or Dynamic list then sMember must be the GUID of Contact or Company searched. If this is a Direct or Black list then sMember must be an e-mail address. true if sMember is contained in list. Take into account that the member may be unactive or blocked and still be contained at the list. Unactive (k_x_list_members.bo_active=0) and blocked (present at black list) members should not receive any e-mails. throws: SQLException - |
delete | public static boolean delete(JDCConnection oConn, String sListGUID) throws SQLException(Code) | | Delete Distribution List
Call k_sp_del_list stored procedure.
Associated Black List (if present) is also deleted.
Parameters: oConn - Database Connection Parameters: sListGUID - GUID of DistributionList to be deleted throws: SQLException - |
memberCount | public int memberCount(JDCConnection oConn) throws SQLException(Code) | | Count active members of this list
Parameters: oConn - JDBC Database Connection Count of members of this list which bo_active field is not zero. throws: SQLException - |
print | public String print(JDCConnection oConn, boolean bPrintHeader) throws SQLException(Code) | | Print List Members to a comma delimited String.
Parameters: oConn - Database Connection Parameters: bPrintHeader - true if column names are to be printed at first row. Comma delimited String with one Member per line. throws: SQLException - |
store | public boolean store(JDCConnection oConn) throws SQLException(Code) | | Store DistributionList
Automatically generates gu_list GUID if not explicitly set.
Parameters: oConn - Database Connection throws: SQLException - |
Methods inherited from com.knowgate.dataobjs.DBPersist | public void allcaps(boolean bAllValuesUpperCase)(Code)(Java Doc) public boolean allcaps()(Code)(Java Doc) protected HashMap changelog(DBPersist oOldInstance)(Code)(Java Doc) public void clear()(Code)(Java Doc) public void clone(DBPersist oSource)(Code)(Java Doc) public boolean containsKey(Object oKey) throws NullPointerException(Code)(Java Doc) public boolean containsValue(Object oKey)(Code)(Java Doc) public boolean delete(JDCConnection oConn) throws SQLException(Code)(Java Doc) public Set entrySet()(Code)(Java Doc) public boolean exists(JDCConnection oConn) throws SQLException(Code)(Java Doc) public Object get(String sKey)(Code)(Java Doc) public Object get(Object oKey) throws NullPointerException(Code)(Java Doc) public String getAuditClassName()(Code)(Java Doc) public Date getCreationDate(JDCConnection oConn) throws SQLException(Code)(Java Doc) public java.util.Date getDate(String sKey) throws ClassCastException(Code)(Java Doc) public String getDateFormated(String sKey, String sFormat) throws ClassCastException(Code)(Java Doc) public String getDateShort(String sKey) throws ClassCastException(Code)(Java Doc) public String getDateTime(String sKey)(Code)(Java Doc) public String getDateTime24(String sKey)(Code)(Java Doc) public BigDecimal getDecimal(String sKey) throws ClassCastException, NumberFormatException(Code)(Java Doc) public String getDecimalFormated(String sKey, String sPattern) throws ClassCastException, NumberFormatException, NullPointerException, IllegalArgumentException(Code)(Java Doc) public double getDouble(String sKey) throws NullPointerException, NumberFormatException(Code)(Java Doc) public String getDoubleFormated(String sKey, String sPattern) throws ClassCastException, NumberFormatException, NullPointerException, IllegalArgumentException(Code)(Java Doc) public float getFloat(String sKey) throws NullPointerException, NumberFormatException(Code)(Java Doc) public String getFloatFormated(String sKey, String sPattern) throws ClassCastException, NumberFormatException, NullPointerException, IllegalArgumentException(Code)(Java Doc) public int getInt(String sKey) throws NullPointerException, NumberFormatException(Code)(Java Doc) public Integer getInteger(String sKey) throws NumberFormatException(Code)(Java Doc) public int getIntervalPart(String sKey, String sPart) throws NullPointerException, NumberFormatException, IllegalArgumentException(Code)(Java Doc) public HashMap getItemMap()(Code)(Java Doc) public Set getItems()(Code)(Java Doc) public Money getMoney(String sKey) throws NumberFormatException(Code)(Java Doc) public java.sql.Date getSQLDate(String sKey) throws ClassCastException(Code)(Java Doc) public Time getSQLTime(String sKey) throws ClassCastException(Code)(Java Doc) public short getShort(String sKey) throws java.lang.NullPointerException(Code)(Java Doc) public String getString(String sKey) throws NullPointerException(Code)(Java Doc) public String getStringNull(String sKey, String sDefault)(Code)(Java Doc) public DBTable getTable()(Code)(Java Doc) public DBTable getTable(JDCConnection oConn) throws SQLException, IllegalStateException(Code)(Java Doc) public String getTableName()(Code)(Java Doc) public String getTime(String sKey) throws ClassCastException(Code)(Java Doc) public Time getTimeOfDay(String sKey)(Code)(Java Doc) public Timestamp getTimestamp(String sKey)(Code)(Java Doc) protected static String getUIdFromName(JDCConnection oConn, Integer iDomainId, String sInstanceNm, String sStoredProc) throws SQLException(Code)(Java Doc) public boolean isEmpty()(Code)(Java Doc) public boolean isNull(String sKey)(Code)(Java Doc) public Iterator iterator()(Code)(Java Doc) public Set keySet()(Code)(Java Doc) public boolean load(JDCConnection oConn, Object[] PKVals) throws SQLException(Code)(Java Doc) public boolean load(JDCConnection oConn, String sKey) throws SQLException(Code)(Java Doc) public void parseXML(String sXMLFilePath) throws SAXException, SAXNotRecognizedException, SAXNotSupportedException, SAXParseException, IOException, ClassNotFoundException, IllegalAccessException, InstantiationException(Code)(Java Doc) public void put(String sKey, String sVal) throws NullPointerException(Code)(Java Doc) public void put(String sKey, Object oObj) throws NullPointerException(Code)(Java Doc) public Object put(Object sKey, Object oObj) throws NullPointerException(Code)(Java Doc) public void put(String sKey, int iVal)(Code)(Java Doc) public void put(String sKey, short iVal)(Code)(Java Doc) public void put(String sKey, Date dtVal)(Code)(Java Doc) public void put(String sKey, Time tmVal)(Code)(Java Doc) public void put(String sKey, String sDate, SimpleDateFormat oPattern) throws ParseException(Code)(Java Doc) public void put(String sKey, double dVal)(Code)(Java Doc) public void put(String sKey, BigDecimal oDecVal)(Code)(Java Doc) public void put(String sKey, String sDecVal, DecimalFormat oPattern) throws ParseException(Code)(Java Doc) public void put(String sKey, float fVal)(Code)(Java Doc) public void put(String sKey, Money mVal)(Code)(Java Doc) public void put(String sKey, File oFile) throws FileNotFoundException(Code)(Java Doc) public void put(String sKey, byte[] aBytes)(Code)(Java Doc) public void put(String sKey, char[] aChars)(Code)(Java Doc) public void put(String sKey, String sData, int iSQLType) throws FileNotFoundException, IllegalArgumentException, NullPointerException(Code)(Java Doc) public void putAll(Properties oPropsCollection) throws FileNotFoundException(Code)(Java Doc) public void putAll(Map oMap)(Code)(Java Doc) public void remove(String sKey)(Code)(Java Doc) public Object remove(Object oKey)(Code)(Java Doc) public void replace(String sKey, Object oObj)(Code)(Java Doc) public void replace(String sKey, int iVal)(Code)(Java Doc) public void replace(String sKey, short iVal)(Code)(Java Doc) public void replace(String sKey, float fVal)(Code)(Java Doc) public void setAuditTransact(String sAuditTransact)(Code)(Java Doc) public void setAuditUser(String sAuditUser)(Code)(Java Doc) public int size()(Code)(Java Doc) public boolean store(JDCConnection oConn) throws SQLException(Code)(Java Doc) public void toLowerCase(String sKey)(Code)(Java Doc) public void toUpperCase(String sKey)(Code)(Java Doc) protected String toXML(String sIdent, String sDelim, HashMap oAttrs) throws IllegalStateException(Code)(Java Doc) public String toXML(String sIdent, String sDelim) throws IllegalStateException(Code)(Java Doc) public String toXML(String sIdent)(Code)(Java Doc) public String toXML()(Code)(Java Doc) public Collection values()(Code)(Java Doc)
|
|
|