com.imsweb.seerapi.client.glossary.GlossaryChangelogEntry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of seerapi-client-java Show documentation
Show all versions of seerapi-client-java Show documentation
API mapping for SEER*API in Java
/*
* Copyright (C) 2012 Information Management Services, Inc.
*/
package com.imsweb.seerapi.client.glossary;
import com.fasterxml.jackson.annotation.JsonProperty;
public class GlossaryChangelogEntry {
@JsonProperty("id")
private String _id;
@JsonProperty("name")
private String _name;
@JsonProperty("old")
private Glossary _oldVersion;
@JsonProperty("new")
private Glossary _newVersion;
public String getId() {
return _id;
}
public void setId(String id) {
_id = id;
}
public String getName() {
return _name;
}
public void setName(String name) {
_name = name;
}
public Glossary getOldVersion() {
return _oldVersion;
}
public void setOldVersion(Glossary oldVersion) {
_oldVersion = oldVersion;
}
public Glossary getNewVersion() {
return _newVersion;
}
public void setNewVersion(Glossary newVersion) {
_newVersion = newVersion;
}
}