All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mofum.scope.common.model.ServiceObject Maven / Gradle / Ivy

There is a newer version: 2.0.0.RELEASE
Show newest version
package com.mofum.scope.common.model;

/**
 * @author [email protected]
 * @since 2019-03-26
 **/
public class ServiceObject {

    private String type;

    private Object data;

    public ServiceObject() {
    }

    public ServiceObject(String type, Object data) {
        this.type = type;
        this.data = data;
    }

    public String getType() {
        return type;
    }

    public void setType(String type) {
        this.type = type;
    }

    public Object getData() {
        return data;
    }

    public void setData(Object data) {
        this.data = data;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy