ex
Fork of mbed-os-example-mbed5-blinky by
dcs-sdk-java-master/app/src/main/java/com/baidu/duer/dcs/devicemodule/alerts/message/SetAlertPayload.java@45:2aa9f933c8d2, 2017-07-18 (annotated)
- Committer:
- TMBOY
- Date:
- Tue Jul 18 16:34:48 2017 +0800
- Revision:
- 45:2aa9f933c8d2
?
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| TMBOY | 45:2aa9f933c8d2 | 1 | /* |
| TMBOY | 45:2aa9f933c8d2 | 2 | * Copyright (c) 2017 Baidu, Inc. All Rights Reserved. |
| TMBOY | 45:2aa9f933c8d2 | 3 | * |
| TMBOY | 45:2aa9f933c8d2 | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| TMBOY | 45:2aa9f933c8d2 | 5 | * you may not use this file except in compliance with the License. |
| TMBOY | 45:2aa9f933c8d2 | 6 | * You may obtain a copy of the License at |
| TMBOY | 45:2aa9f933c8d2 | 7 | * |
| TMBOY | 45:2aa9f933c8d2 | 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| TMBOY | 45:2aa9f933c8d2 | 9 | * |
| TMBOY | 45:2aa9f933c8d2 | 10 | * Unless required by applicable law or agreed to in writing, software |
| TMBOY | 45:2aa9f933c8d2 | 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| TMBOY | 45:2aa9f933c8d2 | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| TMBOY | 45:2aa9f933c8d2 | 13 | * See the License for the specific language governing permissions and |
| TMBOY | 45:2aa9f933c8d2 | 14 | * limitations under the License. |
| TMBOY | 45:2aa9f933c8d2 | 15 | */ |
| TMBOY | 45:2aa9f933c8d2 | 16 | package com.baidu.duer.dcs.devicemodule.alerts.message; |
| TMBOY | 45:2aa9f933c8d2 | 17 | |
| TMBOY | 45:2aa9f933c8d2 | 18 | import com.baidu.duer.dcs.framework.message.Payload; |
| TMBOY | 45:2aa9f933c8d2 | 19 | |
| TMBOY | 45:2aa9f933c8d2 | 20 | import org.codehaus.jackson.annotate.JsonProperty; |
| TMBOY | 45:2aa9f933c8d2 | 21 | |
| TMBOY | 45:2aa9f933c8d2 | 22 | import java.io.Serializable; |
| TMBOY | 45:2aa9f933c8d2 | 23 | |
| TMBOY | 45:2aa9f933c8d2 | 24 | /** |
| TMBOY | 45:2aa9f933c8d2 | 25 | * SetAlert指令对应的payload结构 |
| TMBOY | 45:2aa9f933c8d2 | 26 | * <p> |
| TMBOY | 45:2aa9f933c8d2 | 27 | * Created by guxiuzhong@baidu.com on 2017/5/17. |
| TMBOY | 45:2aa9f933c8d2 | 28 | */ |
| TMBOY | 45:2aa9f933c8d2 | 29 | public class SetAlertPayload extends Payload implements Serializable { |
| TMBOY | 45:2aa9f933c8d2 | 30 | public enum AlertType { |
| TMBOY | 45:2aa9f933c8d2 | 31 | ALARM, |
| TMBOY | 45:2aa9f933c8d2 | 32 | TIMER |
| TMBOY | 45:2aa9f933c8d2 | 33 | } |
| TMBOY | 45:2aa9f933c8d2 | 34 | |
| TMBOY | 45:2aa9f933c8d2 | 35 | // alert唯一token |
| TMBOY | 45:2aa9f933c8d2 | 36 | private String token; |
| TMBOY | 45:2aa9f933c8d2 | 37 | private AlertType type; |
| TMBOY | 45:2aa9f933c8d2 | 38 | // 格式:2017-05-17T03:00:00+0000 |
| TMBOY | 45:2aa9f933c8d2 | 39 | private String scheduledTime; |
| TMBOY | 45:2aa9f933c8d2 | 40 | private String content; |
| TMBOY | 45:2aa9f933c8d2 | 41 | |
| TMBOY | 45:2aa9f933c8d2 | 42 | public void setToken(String token) { |
| TMBOY | 45:2aa9f933c8d2 | 43 | this.token = token; |
| TMBOY | 45:2aa9f933c8d2 | 44 | } |
| TMBOY | 45:2aa9f933c8d2 | 45 | |
| TMBOY | 45:2aa9f933c8d2 | 46 | public String getToken() { |
| TMBOY | 45:2aa9f933c8d2 | 47 | return token; |
| TMBOY | 45:2aa9f933c8d2 | 48 | } |
| TMBOY | 45:2aa9f933c8d2 | 49 | |
| TMBOY | 45:2aa9f933c8d2 | 50 | public void setType(String type) { |
| TMBOY | 45:2aa9f933c8d2 | 51 | this.type = AlertType.valueOf(type.toUpperCase()); |
| TMBOY | 45:2aa9f933c8d2 | 52 | } |
| TMBOY | 45:2aa9f933c8d2 | 53 | |
| TMBOY | 45:2aa9f933c8d2 | 54 | public AlertType getType() { |
| TMBOY | 45:2aa9f933c8d2 | 55 | return type; |
| TMBOY | 45:2aa9f933c8d2 | 56 | } |
| TMBOY | 45:2aa9f933c8d2 | 57 | |
| TMBOY | 45:2aa9f933c8d2 | 58 | @JsonProperty("scheduledTime") |
| TMBOY | 45:2aa9f933c8d2 | 59 | public void setScheduledTime(String dateTime) { |
| TMBOY | 45:2aa9f933c8d2 | 60 | scheduledTime = dateTime; |
| TMBOY | 45:2aa9f933c8d2 | 61 | } |
| TMBOY | 45:2aa9f933c8d2 | 62 | |
| TMBOY | 45:2aa9f933c8d2 | 63 | public String getScheduledTime() { |
| TMBOY | 45:2aa9f933c8d2 | 64 | return scheduledTime; |
| TMBOY | 45:2aa9f933c8d2 | 65 | } |
| TMBOY | 45:2aa9f933c8d2 | 66 | |
| TMBOY | 45:2aa9f933c8d2 | 67 | public String getContent() { |
| TMBOY | 45:2aa9f933c8d2 | 68 | return content; |
| TMBOY | 45:2aa9f933c8d2 | 69 | } |
| TMBOY | 45:2aa9f933c8d2 | 70 | |
| TMBOY | 45:2aa9f933c8d2 | 71 | public void setContent(String content) { |
| TMBOY | 45:2aa9f933c8d2 | 72 | this.content = content; |
| TMBOY | 45:2aa9f933c8d2 | 73 | } |
| TMBOY | 45:2aa9f933c8d2 | 74 | |
| TMBOY | 45:2aa9f933c8d2 | 75 | @Override |
| TMBOY | 45:2aa9f933c8d2 | 76 | public String toString() { |
| TMBOY | 45:2aa9f933c8d2 | 77 | return "SetAlertPayload{" |
| TMBOY | 45:2aa9f933c8d2 | 78 | + "token='" |
| TMBOY | 45:2aa9f933c8d2 | 79 | + token |
| TMBOY | 45:2aa9f933c8d2 | 80 | + '\'' |
| TMBOY | 45:2aa9f933c8d2 | 81 | + ", type=" |
| TMBOY | 45:2aa9f933c8d2 | 82 | + type |
| TMBOY | 45:2aa9f933c8d2 | 83 | + ", scheduledTime='" |
| TMBOY | 45:2aa9f933c8d2 | 84 | + scheduledTime |
| TMBOY | 45:2aa9f933c8d2 | 85 | + '\'' |
| TMBOY | 45:2aa9f933c8d2 | 86 | + '}'; |
| TMBOY | 45:2aa9f933c8d2 | 87 | } |
| TMBOY | 45:2aa9f933c8d2 | 88 | } |
