Dateien hochladen nach „app/src/main/java/de/edotzlaff/schockwelle“
This commit is contained in:
parent
b930e39dee
commit
af1e25bf8c
@ -1,86 +1,86 @@
|
|||||||
package de.edotzlaff.schockwelle;
|
package de.edotzlaff.schockwelle;
|
||||||
|
|
||||||
import java.time.LocalDateTime;
|
import java.time.LocalDateTime;
|
||||||
|
|
||||||
public class Devices {
|
public class Devices {
|
||||||
private String ip;
|
private String ip;
|
||||||
private boolean vibration;
|
private boolean vibration;
|
||||||
private long timestamp;
|
private long timestamp;
|
||||||
private double breitengrad;
|
private double breitengrad;
|
||||||
private double laengengrad;
|
private double laengengrad;
|
||||||
private int amplitude;
|
private int amplitude;
|
||||||
private String localdatetime;
|
private String localdatetime;
|
||||||
private boolean idvergeben;
|
private boolean idvergeben;
|
||||||
private String androidid;
|
private String androidid;
|
||||||
|
|
||||||
public Devices() {
|
public Devices() {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public Devices(String ip, boolean vibration, long timestamp, double breitengrad, double laengengrad, int amplitude, String localdatetime, String androidid) {
|
public Devices(String ip, boolean vibration, long timestamp, double breitengrad, double laengengrad, int amplitude, String localdatetime, String androidid) {
|
||||||
this.ip = ip;
|
this.ip = ip;
|
||||||
this.vibration = vibration;
|
this.vibration = vibration;
|
||||||
this.timestamp = timestamp;
|
this.timestamp = timestamp;
|
||||||
this.breitengrad = breitengrad;
|
this.breitengrad = breitengrad;
|
||||||
this.laengengrad = laengengrad;
|
this.laengengrad = laengengrad;
|
||||||
this.amplitude = amplitude;
|
this.amplitude = amplitude;
|
||||||
this.localdatetime = localdatetime;
|
this.localdatetime = localdatetime;
|
||||||
this.androidid = androidid;
|
this.androidid = androidid;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getIp() {
|
public String getIp() {
|
||||||
return ip;
|
return ip;
|
||||||
}
|
}
|
||||||
public void setIp(String ip) {
|
public void setIp(String ip) {
|
||||||
this.ip = ip;
|
this.ip = ip;
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean isVibration() {
|
public boolean isVibration() {
|
||||||
return vibration;
|
return vibration;
|
||||||
}
|
}
|
||||||
public void setVibration(boolean vibration) {
|
public void setVibration(boolean vibration) {
|
||||||
this.vibration = vibration;
|
this.vibration = vibration;
|
||||||
}
|
}
|
||||||
|
|
||||||
public long getTimestamp() {
|
public long getTimestamp() {
|
||||||
return timestamp;
|
return timestamp;
|
||||||
}
|
}
|
||||||
public void setTimestamp(long timestamp) {
|
public void setTimestamp(long timestamp) {
|
||||||
this.timestamp = timestamp;
|
this.timestamp = timestamp;
|
||||||
}
|
}
|
||||||
|
|
||||||
public double getBreitengrad() {
|
public double getBreitengrad() {
|
||||||
return breitengrad;
|
return breitengrad;
|
||||||
}
|
}
|
||||||
public void setBreitengrad(double breitengrad) {
|
public void setBreitengrad(double breitengrad) {
|
||||||
this.breitengrad = breitengrad;
|
this.breitengrad = breitengrad;
|
||||||
}
|
}
|
||||||
|
|
||||||
public double getLaengengrad() {
|
public double getLaengengrad() {
|
||||||
return laengengrad;
|
return laengengrad;
|
||||||
}
|
}
|
||||||
public void setLaengengrad(double laengengrad) {
|
public void setLaengengrad(double laengengrad) {
|
||||||
this.laengengrad = laengengrad;
|
this.laengengrad = laengengrad;
|
||||||
}
|
}
|
||||||
|
|
||||||
public int getAmplitude() {
|
public int getAmplitude() {
|
||||||
return amplitude;
|
return amplitude;
|
||||||
}
|
}
|
||||||
public void setAmplitude(int amplitude) {
|
public void setAmplitude(int amplitude) {
|
||||||
this.amplitude = amplitude;
|
this.amplitude = amplitude;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getLocaldatetime() {
|
public String getLocaldatetime() {
|
||||||
return localdatetime;
|
return localdatetime;
|
||||||
}
|
}
|
||||||
public void setLocaldatetime(String localdatetime) {
|
public void setLocaldatetime(String localdatetime) {
|
||||||
this.localdatetime = localdatetime;
|
this.localdatetime = localdatetime;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getAndroidid() {
|
public String getAndroidid() {
|
||||||
return androidid;
|
return androidid;
|
||||||
}
|
}
|
||||||
public void setAndroidid(String androidid) {
|
public void setAndroidid(String androidid) {
|
||||||
this.androidid = androidid;
|
this.androidid = androidid;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user