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

io.convergence_platform.common.dto.AtomicValueDTO Maven / Gradle / Ivy

Go to download

Holds the common functionality needed by all Convergence Platform-based services written in Java.

The newest version!
package io.convergence_platform.common.dto;

import io.convergence_platform.common.responses.IApiResponseBody;
import com.fasterxml.jackson.annotation.JsonProperty;

public class AtomicValueDTO implements IApiResponseBody {
    @JsonProperty("value")
    private Type value;

    public AtomicValueDTO() {

    }

    public AtomicValueDTO(Type value) {
        this.value = value;
    }

    public Type getValue() {
        return value;
    }

    public void setValue(Type value) {
        this.value = value;
    }

    @Override
    public String getResponseBodyType() {
        return "atomic_value";
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy