buildframework/helium/sf/java/signaling/src/com/nokia/helium/signal/ant/types/InfoNotifier.java
changeset 628 7c4a911dc066
parent 587 85df38eb4012
child 645 b8d81fa19e7d
equal deleted inserted replaced
588:c7c26511138f 628:7c4a911dc066
    15  *
    15  *
    16  */
    16  */
    17 
    17 
    18 package com.nokia.helium.signal.ant.types;
    18 package com.nokia.helium.signal.ant.types;
    19 
    19 
       
    20 import java.io.File;
       
    21 
       
    22 import org.apache.log4j.Logger;
       
    23 import org.apache.tools.ant.types.DataType;
       
    24 
    20 import com.nokia.helium.signal.Notifier;
    25 import com.nokia.helium.signal.Notifier;
    21 import org.apache.tools.ant.types.DataType;
       
    22 import org.apache.log4j.Logger;
       
    23 import java.util.List;
       
    24 import java.io.File;
       
    25 
    26 
    26 /**
    27 /**
    27  * The InfoNotifier provides you an easy way to inform the
    28  * The InfoNotifier provides you an easy way to inform the
    28  * user about the log file where the build failed.
    29  * user about the log file where the build failed.
    29  * @ant.type name="infoNotifier" category="Signaling"
    30  * @ant.type name="infoNotifier" category="Signaling"
    30  */
    31  */
    31 public class InfoNotifier extends DataType implements Notifier {
    32 public class InfoNotifier extends DataType implements Notifier {
    32 
    33 
    33     private Logger log = Logger.getLogger(InfoNotifier.class);
    34     private Logger log = Logger.getLogger(InfoNotifier.class);
    34     /**
       
    35      * Rendering the template, and sending the result through email.
       
    36      * @deprecated
       
    37      * @param signalName
       
    38      *            - Name of the signal that has been raised.
       
    39      */
       
    40     @SuppressWarnings("unchecked")
       
    41     public void sendData(String signalName, boolean failStatus,
       
    42             List<String> fileList) {
       
    43     }
       
    44     
    35     
    45     /**
    36     /**
    46      * Rendering the template, and sending the result through email.
    37      * Rendering the template, and sending the result through email.
    47      * 
    38      * 
    48      * @param signalName - is the name of the signal that has been raised.
    39      * @param signalName - is the name of the signal that has been raised.