View Javadoc

1   package com.atlassian.messagequeue.internal.lifecycle;
2   
3   import org.codehaus.jackson.annotate.JsonIgnoreProperties;
4   import org.codehaus.jackson.annotate.JsonProperty;
5   
6   /**
7    * A SNS notification.
8    */
9   @JsonIgnoreProperties(ignoreUnknown = true)
10  public class SNSNotification {
11      @JsonProperty("Subject")
12      private String subject;
13      @JsonProperty("Message")
14      private String message;
15  
16      public String getSubject() {
17          return subject;
18      }
19  
20      public String getMessage() {
21          return message;
22      }
23  }