add serialVersionUID to to serializable classes
This commit is contained in:
parent
38eb883d7d
commit
dfa4c55496
@ -40,6 +40,8 @@ import static java.nio.charset.StandardCharsets.UTF_8;
|
||||
* @author Stefan Kalscheuer
|
||||
*/
|
||||
public class UraClient implements Serializable {
|
||||
private static final long serialVersionUID = -1183740075816686611L;
|
||||
|
||||
private static final String DEFAULT_INSTANT_URL = "/interfaces/ura/instant_V1";
|
||||
private static final String DEFAULT_STREAM_URL = "/interfaces/ura/stream_V1";
|
||||
|
||||
|
@ -10,6 +10,8 @@ import java.util.List;
|
||||
* @since 1.3
|
||||
*/
|
||||
public class Message implements Model {
|
||||
private static final long serialVersionUID = 5233610751062774273L;
|
||||
|
||||
private static final int MSG_UUID = 7;
|
||||
private static final int MSG_TYPE = 8;
|
||||
private static final int MSG_PRIORITY = 9;
|
||||
|
@ -25,6 +25,8 @@ import java.util.List;
|
||||
* @author Stefan Kalscheuer
|
||||
*/
|
||||
public final class Stop implements Model {
|
||||
private static final long serialVersionUID = 202040044477267787L;
|
||||
|
||||
private static final int F_STOP_NAME = 1;
|
||||
private static final int F_STOP_ID = 2;
|
||||
private static final int F_INDICATOR = 3;
|
||||
|
@ -25,6 +25,8 @@ import java.util.List;
|
||||
* @author Stefan Kalscheuer
|
||||
*/
|
||||
public final class Trip implements Model {
|
||||
private static final long serialVersionUID = 7477381188869237381L;
|
||||
|
||||
private static final int VISIT_ID = 7;
|
||||
private static final int LINE_ID = 8;
|
||||
private static final int LINE_NAME = 9;
|
||||
|
Loading…
x
Reference in New Issue
Block a user