IBM WebSphere Multichannel Bank Transformation Toolkit Javadoc

com.ibm.btt.channel.smart.dao.jms
Class SmartDataCollectJMSImpl

java.lang.Object
  extended by com.ibm.btt.channel.smart.dao.jpa.SmartDataCollectDAOImpl
      extended by com.ibm.btt.channel.smart.dao.jms.SmartDataCollectJMSImpl
All Implemented Interfaces:
SmartDataCollectDAO

public class SmartDataCollectJMSImpl
extends SmartDataCollectDAOImpl
implements SmartDataCollectDAO


Field Summary
 
Fields inherited from class com.ibm.btt.channel.smart.dao.jpa.SmartDataCollectDAOImpl
behaviorDAO, behaviorExtDAO, interestedDAO, visitDAO
 
Constructor Summary
SmartDataCollectJMSImpl()
           
 
Method Summary
 void addBehaviorLog(BehaviorLog behaviorLog)
          persistence BehaviorLog entity
 void addPreferenceLog(PreferenceLog prefenceLog)
          persistent a preferenceLog entity
 void addVisitLog(VisitLog visitLog)
          persistence VisitLog entity
 void deleteBehaviorLog(BehaviorLog behaviorLog)
          Delete a persistent BehaviorLog entity
 void deletePreferenceLog(PreferenceLog prefenceLog)
          delete a persistent Preference entity
 void deleteVisitLog(VisitLog visitLog)
          Delete a persistent VisitLog entity
 java.util.List<VisitLog> findByQuery(java.lang.String queryString, int... rowStartIdxAndCount)
          Deprecated.  
 BehaviorLog getBehaviorLogById(java.lang.String id)
          Deprecated.  
 java.util.List<BehaviorLog> getBehaviorLogByProperty(java.lang.String propertyName, java.lang.Object value)
          Deprecated.  
 java.util.List<BehaviorLog> getBehaviorLogByType(java.lang.String behaviorType)
          Deprecated.  
 java.util.List<BehaviorLog> getBehaviorLogByUserId(java.lang.String userId)
          Deprecated.  
 java.lang.String getJmsConnectionFactory()
          get JMS connectionFactory
 java.lang.String getJmsSendQueue()
          get JMS send Queue
 PreferenceLog getPreferenceLogById(java.lang.String id)
          Deprecated.  
 java.util.List<PreferenceLog> getPreferenceLogByProperty(java.lang.String propertyName, java.lang.Object value)
          Deprecated.  
 java.util.List<PreferenceLog> getPreferenceLogByUserId(java.lang.String userId)
          Deprecated.  
 VisitLog getVisitLogById(java.lang.String visitId)
          Deprecated.  
 java.util.List<VisitLog> getVisitLogByProperty(java.lang.String propertyName, java.lang.Object value)
          Deprecated.  
 java.util.List<VisitLog> getVisitLogByUserId(java.lang.String userId)
          Deprecated.  
 void sendMsg(java.io.Serializable object)
          JMS sendMsg
 void setJmsConnectionFactory(java.lang.String jmsConnectionFactory)
          set JMS connectionFactory
 void setJmsSendQueue(java.lang.String jmsSendQueue)
          set JMS send Queue
 void updateBehaviorLog(BehaviorLog behaviorLog)
          Deprecated.  
 void updatePreferenceLog(PreferenceLog prefenceLog)
          Deprecated.  
 void updateVisitLog(VisitLog visitLog)
          Deprecated.  
 
Methods inherited from class com.ibm.btt.channel.smart.dao.jpa.SmartDataCollectDAOImpl
addBehaviorExtLog, deleteBehaviorExtLog, updateBehaviorExtLog
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface com.ibm.btt.channel.smart.dao.SmartDataCollectDAO
addBehaviorExtLog, deleteBehaviorExtLog, updateBehaviorExtLog
 

Constructor Detail

SmartDataCollectJMSImpl

public SmartDataCollectJMSImpl()
Method Detail

addBehaviorLog

public void addBehaviorLog(BehaviorLog behaviorLog)
persistence BehaviorLog entity

Specified by:
addBehaviorLog in interface SmartDataCollectDAO
Overrides:
addBehaviorLog in class SmartDataCollectDAOImpl
Parameters:
BehaviorLog - behaviorLog

addPreferenceLog

public void addPreferenceLog(PreferenceLog prefenceLog)
persistent a preferenceLog entity

Specified by:
addPreferenceLog in interface SmartDataCollectDAO
Overrides:
addPreferenceLog in class SmartDataCollectDAOImpl
Parameters:
PreferenceLog - prefenceLog

addVisitLog

public void addVisitLog(VisitLog visitLog)
persistence VisitLog entity

Specified by:
addVisitLog in interface SmartDataCollectDAO
Overrides:
addVisitLog in class SmartDataCollectDAOImpl
Parameters:
VisitLog - visitLog

deleteBehaviorLog

public void deleteBehaviorLog(BehaviorLog behaviorLog)
Delete a persistent BehaviorLog entity

Specified by:
deleteBehaviorLog in interface SmartDataCollectDAO
Overrides:
deleteBehaviorLog in class SmartDataCollectDAOImpl
Parameters:
BehaviorLog - behaviorLog

deletePreferenceLog

public void deletePreferenceLog(PreferenceLog prefenceLog)
delete a persistent Preference entity

Specified by:
deletePreferenceLog in interface SmartDataCollectDAO
Overrides:
deletePreferenceLog in class SmartDataCollectDAOImpl
Parameters:
PreferenceLog - prefenceLog

deleteVisitLog

public void deleteVisitLog(VisitLog visitLog)
Delete a persistent VisitLog entity

Specified by:
deleteVisitLog in interface SmartDataCollectDAO
Overrides:
deleteVisitLog in class SmartDataCollectDAOImpl
Parameters:
VisitLog - visitLog

findByQuery

public java.util.List<VisitLog> findByQuery(java.lang.String queryString,
                                            int... rowStartIdxAndCount)
Deprecated. 

Description copied from class: SmartDataCollectDAOImpl
get entities by a specify queryString

Specified by:
findByQuery in interface SmartDataCollectDAO
Overrides:
findByQuery in class SmartDataCollectDAOImpl
Parameters:
String - queryString
final - int... rowStartIdxAndCount
Returns:
List

getBehaviorLogById

public BehaviorLog getBehaviorLogById(java.lang.String id)
Deprecated. 

Description copied from class: SmartDataCollectDAOImpl
get BehaviorLog entity by primary key

Specified by:
getBehaviorLogById in interface SmartDataCollectDAO
Overrides:
getBehaviorLogById in class SmartDataCollectDAOImpl
Parameters:
String - id
Returns:
BehaviorLog

getBehaviorLogByProperty

public java.util.List<BehaviorLog> getBehaviorLogByProperty(java.lang.String propertyName,
                                                            java.lang.Object value)
Deprecated. 

Description copied from class: SmartDataCollectDAOImpl
get BehaviorLog entities by a specify propertyName and value

Specified by:
getBehaviorLogByProperty in interface SmartDataCollectDAO
Overrides:
getBehaviorLogByProperty in class SmartDataCollectDAOImpl
Parameters:
String - propertyName
Object - value
Returns:
List

getBehaviorLogByType

public java.util.List<BehaviorLog> getBehaviorLogByType(java.lang.String behaviorType)
Deprecated. 

Description copied from class: SmartDataCollectDAOImpl
get BehaviorLog entities by Behavior Type

Specified by:
getBehaviorLogByType in interface SmartDataCollectDAO
Overrides:
getBehaviorLogByType in class SmartDataCollectDAOImpl
Parameters:
String - behaviorType
Returns:
List

getBehaviorLogByUserId

public java.util.List<BehaviorLog> getBehaviorLogByUserId(java.lang.String userId)
Deprecated. 

Description copied from class: SmartDataCollectDAOImpl
get BehaviorLog entities by userId

Specified by:
getBehaviorLogByUserId in interface SmartDataCollectDAO
Overrides:
getBehaviorLogByUserId in class SmartDataCollectDAOImpl
Parameters:
String - userId
Returns:
List

getPreferenceLogById

public PreferenceLog getPreferenceLogById(java.lang.String id)
Deprecated. 

Description copied from class: SmartDataCollectDAOImpl
get Preference entity by primary key

Specified by:
getPreferenceLogById in interface SmartDataCollectDAO
Overrides:
getPreferenceLogById in class SmartDataCollectDAOImpl
Parameters:
String - id
Returns:
PreferenceLog

getPreferenceLogByProperty

public java.util.List<PreferenceLog> getPreferenceLogByProperty(java.lang.String propertyName,
                                                                java.lang.Object value)
Deprecated. 

Description copied from class: SmartDataCollectDAOImpl
get PreferenceLog entities by a specify propertyName and value

Specified by:
getPreferenceLogByProperty in interface SmartDataCollectDAO
Overrides:
getPreferenceLogByProperty in class SmartDataCollectDAOImpl
Parameters:
String - propertyName
Object - value
Returns:
List

getPreferenceLogByUserId

public java.util.List<PreferenceLog> getPreferenceLogByUserId(java.lang.String userId)
Deprecated. 

Description copied from class: SmartDataCollectDAOImpl
get Preference entities by userId

Specified by:
getPreferenceLogByUserId in interface SmartDataCollectDAO
Overrides:
getPreferenceLogByUserId in class SmartDataCollectDAOImpl
Parameters:
String - userId
Returns:
List

getVisitLogById

public VisitLog getVisitLogById(java.lang.String visitId)
Deprecated. 

Description copied from class: SmartDataCollectDAOImpl
get a VisitLog entity by primary key

Specified by:
getVisitLogById in interface SmartDataCollectDAO
Overrides:
getVisitLogById in class SmartDataCollectDAOImpl
Parameters:
String - visitId
Returns:
VisitLog

getVisitLogByProperty

public java.util.List<VisitLog> getVisitLogByProperty(java.lang.String propertyName,
                                                      java.lang.Object value)
Deprecated. 

Description copied from class: SmartDataCollectDAOImpl
get VisitLog entities by a specify propertyName and value

Specified by:
getVisitLogByProperty in interface SmartDataCollectDAO
Overrides:
getVisitLogByProperty in class SmartDataCollectDAOImpl
Parameters:
String - propertyName
Returns:
List

getVisitLogByUserId

public java.util.List<VisitLog> getVisitLogByUserId(java.lang.String userId)
Deprecated. 

Description copied from class: SmartDataCollectDAOImpl
get VisitLog entities by userId

Specified by:
getVisitLogByUserId in interface SmartDataCollectDAO
Overrides:
getVisitLogByUserId in class SmartDataCollectDAOImpl
Parameters:
String - userId
Returns:
List

updateBehaviorLog

public void updateBehaviorLog(BehaviorLog behaviorLog)
Deprecated. 

Description copied from class: SmartDataCollectDAOImpl
update a persistent behaviorLog entity

Specified by:
updateBehaviorLog in interface SmartDataCollectDAO
Overrides:
updateBehaviorLog in class SmartDataCollectDAOImpl
Parameters:
BehaviorLog - behaviorLog

updatePreferenceLog

public void updatePreferenceLog(PreferenceLog prefenceLog)
Deprecated. 

Description copied from class: SmartDataCollectDAOImpl
update a persistent PreferenceLog entity

Specified by:
updatePreferenceLog in interface SmartDataCollectDAO
Overrides:
updatePreferenceLog in class SmartDataCollectDAOImpl
Parameters:
PreferenceLog - prefenceLog

updateVisitLog

public void updateVisitLog(VisitLog visitLog)
Deprecated. 

Description copied from class: SmartDataCollectDAOImpl
update a persistent VisitLog entity

Specified by:
updateVisitLog in interface SmartDataCollectDAO
Overrides:
updateVisitLog in class SmartDataCollectDAOImpl
Parameters:
VisitLog - visitLog

sendMsg

public void sendMsg(java.io.Serializable object)
JMS sendMsg

Parameters:
Serializable - object

getJmsConnectionFactory

public java.lang.String getJmsConnectionFactory()
get JMS connectionFactory

Returns:
String

setJmsConnectionFactory

public void setJmsConnectionFactory(java.lang.String jmsConnectionFactory)
set JMS connectionFactory

Parameters:
String - jmsConnectionFactory

getJmsSendQueue

public java.lang.String getJmsSendQueue()
get JMS send Queue

Returns:
String

setJmsSendQueue

public void setJmsSendQueue(java.lang.String jmsSendQueue)
set JMS send Queue

Parameters:
String - jmsSendQueue

IBM WebSphere Multichannel Bank Transformation Toolkit Javadoc

(c) Copyright IBM Corporation 1998, 2010