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

com.imsweb.seerapi.client.rx.RxHistoryEvent Maven / Gradle / Ivy

There is a newer version: 5.7
Show newest version
/*
 * Copyright (C) 2012 Information Management Services, Inc.
 */
package com.imsweb.seerapi.client.rx;

import java.util.Date;

import com.fasterxml.jackson.annotation.JsonProperty;

public class RxHistoryEvent {

    @JsonProperty("user")
    private String _user;
    @JsonProperty("date")
    private Date _date;
    @JsonProperty("old")
    private Rx _old;
    @JsonProperty("new")
    private Rx _new;

    public String getUser() {
        return _user;
    }

    public void setUser(String user) {
        _user = user;
    }

    public Date getDate() {
        return _date;
    }

    public void setDate(Date date) {
        _date = date;
    }

    public Rx getOld() {
        return _old;
    }

    public void setOld(Rx old) {
        _old = old;
    }

    public Rx getNew() {
        return _new;
    }

    public void setNew(Rx aNew) {
        _new = aNew;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy