Back to project page droidBBpush.
The source code is released under:
This is free and unencumbered software released into the public domain. Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a co...
If you think the Android project droidBBpush listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.arg3.examples.push.model; // w ww .j av a2s .c om import com.arg3.examples.push.enums.DeviceType; /** * Created by c0der78 on 2014-09-19. */ public class Device { private int id; private DeviceType type; private String token; public Device() { } public Device(DeviceType type, String token) { this.type = type; this.token = token; } public int getId() { return id; } public void setId(int id) { this.id = id; } public DeviceType getType() { return type; } public void setType(DeviceType type) { this.type = type; } public String getToken() { return token; } public void setToken(String token) { this.token = token; } }