buildframework/helium/sf/java/signaling/src/com/nokia/helium/signal/ant/types/SMSNotifier.java
changeset 628 7c4a911dc066
parent 587 85df38eb4012
equal deleted inserted replaced
588:c7c26511138f 628:7c4a911dc066
    18  
    18  
    19 package com.nokia.helium.signal.ant.types;
    19 package com.nokia.helium.signal.ant.types;
    20 
    20 
    21 
    21 
    22 import org.apache.tools.ant.types.DataType;
    22 import org.apache.tools.ant.types.DataType;
       
    23 
    23 import com.nokia.helium.signal.Notifier;
    24 import com.nokia.helium.signal.Notifier;
    24 import java.util.List;
       
    25 
    25 
    26 /**
    26 /**
    27  * Defines a signal notification via SMS.
    27  * Defines a signal notification via SMS.
    28  */
    28  */
    29 public class SMSNotifier extends DataType implements Notifier {
    29 public class SMSNotifier extends DataType implements Notifier {
    30 
    30 
    31     public SMSNotifier() {
       
    32     }
       
    33     /**
    31     /**
    34      * Sends the data to the requested sender list with specified notifier
    32      * Sends the data to the requested sender list with specified notifier
    35      * 
    33      * 
    36      * @param signalName is the name of the signal that has been raised.
    34      * @param signalName is the name of the signal that has been raised.
    37      * @param failStatus indicates whether to fail the build or not
    35      * @param failStatus indicates whether to fail the build or not
    40      */
    38      */
    41     public void sendData(String signalName, boolean failStatus,
    39     public void sendData(String signalName, boolean failStatus,
    42             NotifierInput notifierInput, String message ) {
    40             NotifierInput notifierInput, String message ) {
    43     }
    41     }
    44 
    42 
    45     /**
       
    46      * Sends the data to the requested sender list with specified notifier
       
    47      * 
       
    48      * @deprecated
       
    49      *    sends the data to the list of requested user.
       
    50      */
       
    51     public void sendData(String signalName, boolean failStatus,
       
    52             List<String> fileList) {
       
    53     }
       
    54 }
    43 }