parent
235dfef19d
commit
822e57365f
@ -0,0 +1,8 @@ |
|||||||
|
package com.arialyy.aria.core; |
||||||
|
|
||||||
|
/** |
||||||
|
* Created by Aria.Lao on 2017/1/18. |
||||||
|
* AM 上传文件接收器 |
||||||
|
*/ |
||||||
|
public class AMUplodReceiver { |
||||||
|
} |
@ -0,0 +1,16 @@ |
|||||||
|
package com.arialyy.aria.core; |
||||||
|
|
||||||
|
/** |
||||||
|
* Created by Aria.Lao on 2017/1/23. |
||||||
|
*/ |
||||||
|
|
||||||
|
public enum RequestEnum { |
||||||
|
GET("GET"), POST("POST"); |
||||||
|
|
||||||
|
String name; |
||||||
|
|
||||||
|
RequestEnum(String name) { |
||||||
|
this.name = name; |
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -0,0 +1,10 @@ |
|||||||
|
package com.arialyy.aria.core; |
||||||
|
|
||||||
|
/** |
||||||
|
* Created by Aria.Lao on 2017/1/23. |
||||||
|
* 任务实体 |
||||||
|
*/ |
||||||
|
public class TaskEntity { |
||||||
|
public DownloadEntity downloadEntity; |
||||||
|
public RequestEnum requestEnum = RequestEnum.GET; |
||||||
|
} |
Loading…
Reference in new issue