buildframework/helium/sf/java/signaling/src/com/nokia/helium/signal/Notifier.java
changeset 628 7c4a911dc066
parent 587 85df38eb4012
equal deleted inserted replaced
588:c7c26511138f 628:7c4a911dc066
    16 */
    16 */
    17 
    17 
    18 
    18 
    19 package com.nokia.helium.signal;
    19 package com.nokia.helium.signal;
    20 
    20 
    21 import java.util.List;
       
    22 import org.apache.tools.ant.Project;
    21 import org.apache.tools.ant.Project;
       
    22 
    23 import com.nokia.helium.signal.ant.types.NotifierInput;
    23 import com.nokia.helium.signal.ant.types.NotifierInput;
    24 
    24 
    25 /**
    25 /**
    26  * This interface describe what method a Notifier needs to implement.
    26  * This interface describe what method a Notifier needs to implement.
    27  * 
    27  * 
    44      * @param message is the message from the signal that has been raised.           
    44      * @param message is the message from the signal that has been raised.           
    45      */
    45      */
    46     void sendData(String signalName, boolean failStatus,
    46     void sendData(String signalName, boolean failStatus,
    47             NotifierInput notifierInput, String message );
    47             NotifierInput notifierInput, String message );
    48 
    48 
    49     /**
       
    50      * Sends the data to the requested sender list with specified notifier
       
    51      * 
       
    52      * @deprecated
       
    53      */    
       
    54     void sendData(String signalName, boolean failStatus,
       
    55             List<String> fileList);
       
    56 }
    49 }