stdmql.miningEngine
Interface GenericMiningOperator


public interface GenericMiningOperator


Method Summary
 void execute()
           
 java.util.ArrayList<java.lang.String> getParameters()
          Deprecated.  
 void setParams(java.util.Hashtable<java.lang.String,java.lang.Object> params)
           
 void storeResult()
          This method represent the terminal phase of the mining algorithm where the result are stored.
 

Method Detail

setParams

void setParams(java.util.Hashtable<java.lang.String,java.lang.Object> params)
               throws java.lang.Exception
Parameters:
params - an Hashtable which contains the parameters in the DMQL query executed by the user This method receive the parameters and prepare the execution of the operator
Throws:
java.lang.Exception

execute

void execute()
             throws java.lang.Exception
Parameters:
call - the information about the DMQL query executed by the user
db - an instance of the DBManager It implement the real operation of the operator
Throws:
java.lang.Exception

storeResult

void storeResult()
                 throws java.lang.Exception
This method represent the terminal phase of the mining algorithm where the result are stored.

Throws:
java.lang.Exception

getParameters

java.util.ArrayList<java.lang.String> getParameters()
Deprecated.