|
IBM Information Integrator for Content V8.2 APIs |
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--com.ibm.mm.beans.infomining.CMBInfoMiningBean | +--com.ibm.mm.beans.infomining.CMBConnectedMiningBean | +--com.ibm.mm.beans.infomining.CMBInfoMiningAdapter
The CMBInfoMiningAdapter is a non-visual bean that can be used to convert between various event types.
The CMBInfoMiningAdapter is able to convert between Information Mining event types.
In addition it supports the CMBResultEvent
so you can
use the Information Mining beans together with other EIP beans
(e.g. CMBSearchResults
). The adapter
allows you to tie the beans to build various scenarios. Refer to the samples in the
Enterprise Information Portal Application Programming Guide to get a more detailed overview.
Properties and Events Overview: pre-conditions open server connection properties (default) catalogName ("") bound properties none constrained properties none event target for CMBConnectionReplyEvent CMBStoreRecordReplyEvent CMBLookupRecordReplyEvent CMBDeleteRecordReplyEvent CMBTextAnalysisReplyEvent CMBResultEvent event source for CMBExceptionEvent CMBTraceEvent CMBTextAnalysisRequestEvent CMBStoreRecordRequestEvent CMBLookupRecordRequestEvent CMBDeleteRecordRequestEvent CMBResultEvent
Constructor Summary | |
CMBInfoMiningAdapter()
Creates a new CMBInfoMiningAdapter. |
Method Summary | |
void |
addCMBDeleteRecordRequestListener(CMBDeleteRecordRequestListener l)
Adds the specified delete record request listener so that delete record request events can be received from this Information Mining bean. |
void |
addCMBLookupRecordRequestListener(CMBLookupRecordRequestListener l)
Adds the specified lookup record request listener so that lookup record request events can be received from this Information Mining bean. |
void |
addCMBResultListener(com.ibm.mm.beans.CMBResultListener l)
Adds the specified result listener so that result events can be received from this Information Mining bean. |
void |
addCMBStoreRecordRequestListener(CMBStoreRecordRequestListener l)
Adds the specified store record request listener so that store record request events can be received from this Information Mining bean. |
void |
addCMBTextAnalysisRequestListener(CMBTextAnalysisRequestListener l)
Adds the specified text analysis request listener so that text analysis request events can be received from this Information Mining bean. |
java.lang.String |
getCatalogName()
Returns the current catalog name. |
CMBContentProvider |
getContentProvider()
Returns the content provider. |
void |
onCMBDeleteRecordReply(CMBDeleteRecordReplyEvent replyEvent)
This method gets called for a delete record reply. |
void |
onCMBLookupRecordReply(CMBLookupRecordReplyEvent replyEvent)
This method gets called for a lookup record reply. |
void |
onCMBResult(com.ibm.mm.beans.CMBResultEvent resultEvent)
This method gets called for a result. |
void |
onCMBStoreRecordReply(CMBStoreRecordReplyEvent replyEvent)
This method gets called for a store record reply. |
void |
onCMBTextAnalysisReply(CMBTextAnalysisReplyEvent replyEvent)
This method gets called for a text analysis reply. |
void |
removeCMBDeleteRecordRequestListener(CMBDeleteRecordRequestListener l)
Removes the specified delete record request listener so that it no longer receives delete record request events from this Information Mining bean. |
void |
removeCMBLookupRecordRequestListener(CMBLookupRecordRequestListener l)
Removes the specified lookup record request listener so that it no longer receives lookup record request events from this Information Mining bean. |
void |
removeCMBResultListener(com.ibm.mm.beans.CMBResultListener l)
Removes the specified result listener so that it no longer receives result events from this Information Mining bean. |
void |
removeCMBStoreRecordRequestListener(CMBStoreRecordRequestListener l)
Removes the specified store record request listener so that it no longer receives store record request events from this Information Mining bean. |
void |
removeCMBTextAnalysisRequestListener(CMBTextAnalysisRequestListener l)
Removes the specified text analysis request listener so that it no longer receives text analysis request events from this Information Mining bean. |
void |
setCatalogName(java.lang.String catalogName)
Sets the name of the catalog to be used. |
void |
setContentProvider(CMBContentProvider contentProvider)
Sets the content provider to determine the text used for text analysis from information stored in the EIP data stores. |
Methods inherited from class com.ibm.mm.beans.infomining.CMBConnectedMiningBean |
getConnection, isConnected, onCMBConnectionReply, setConnection, validateConnection |
Methods inherited from class com.ibm.mm.beans.infomining.CMBInfoMiningBean |
addCMBExceptionListener, addCMBTraceListener, isTraceEnabled, removeCMBExceptionListener, removeCMBTraceListener, setTraceEnabled |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public CMBInfoMiningAdapter()
Method Detail |
public void setCatalogName(java.lang.String catalogName)
catalogName
- the catalog name.getCatalogName()
public java.lang.String getCatalogName()
setCatalogName(String)
public void setContentProvider(CMBContentProvider contentProvider)
contentProvider
- the content provider to be setgetContentProvider()
public CMBContentProvider getContentProvider()
setContentProvider(CMBContentProvider)
public void onCMBResult(com.ibm.mm.beans.CMBResultEvent resultEvent)
onCMBResult
in interface com.ibm.mm.beans.CMBResultListener
resultEvent
- an object describing event details.public void onCMBTextAnalysisReply(CMBTextAnalysisReplyEvent replyEvent)
onCMBTextAnalysisReply
in interface CMBTextAnalysisReplyListener
replyEvent
- an object describing event details.public void onCMBStoreRecordReply(CMBStoreRecordReplyEvent replyEvent)
onCMBStoreRecordReply
in interface CMBStoreRecordReplyListener
replyEvent
- an object describing event details.public void onCMBLookupRecordReply(CMBLookupRecordReplyEvent replyEvent)
onCMBLookupRecordReply
in interface CMBLookupRecordReplyListener
replyEvent
- an object describing event details.public void onCMBDeleteRecordReply(CMBDeleteRecordReplyEvent replyEvent)
onCMBDeleteRecordReply
in interface CMBDeleteRecordReplyListener
replyEvent
- an object describing event details.public void addCMBStoreRecordRequestListener(CMBStoreRecordRequestListener l)
l
- the store record request listenerpublic void removeCMBStoreRecordRequestListener(CMBStoreRecordRequestListener l)
l
- the store record request listenerpublic void addCMBDeleteRecordRequestListener(CMBDeleteRecordRequestListener l)
l
- the delete record request listenerpublic void removeCMBDeleteRecordRequestListener(CMBDeleteRecordRequestListener l)
l
- the delete record request listenerpublic void addCMBLookupRecordRequestListener(CMBLookupRecordRequestListener l)
l
- the lookup record request listenerpublic void removeCMBLookupRecordRequestListener(CMBLookupRecordRequestListener l)
l
- the lookup record request listenerpublic void addCMBTextAnalysisRequestListener(CMBTextAnalysisRequestListener l)
l
- the text analysisrequest listenerpublic void removeCMBTextAnalysisRequestListener(CMBTextAnalysisRequestListener l)
l
- the text analyis request listenerpublic void addCMBResultListener(com.ibm.mm.beans.CMBResultListener l)
l
- the result listenerpublic void removeCMBResultListener(com.ibm.mm.beans.CMBResultListener l)
l
- the result listener
|
IBM Information Integrator for Content V8.2 APIs |
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |