1st version that works

This commit is contained in:
2022-03-14 11:53:00 +02:00
parent ee2884b2ff
commit 3806d2c80d
617 changed files with 17293 additions and 4470 deletions

View File

@ -0,0 +1,35 @@
package com.safemobile.lib;
import java.io.Serializable;
public class SerializedObject implements Serializable{
/**
*
*/
private static final long serialVersionUID = 1L;
private Object object;
private String type;
public SerializedObject (Object object, String type){
this.setObject(object);
this.setType(type);
}
public Object getObject() {
return object;
}
public void setObject(Object object) {
this.object = object;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
}