An error occurred while loading the file. Please try again.
-
Darshan M N authored5602c433
package org.tarento.retail.contract;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
@JsonIgnoreProperties(ignoreUnknown = true)
public class Role {
@JsonProperty("id")
private Long id;
@JsonProperty("name")
private String name;
@JsonProperty("code")
private String code;
public void setId(Long id) {
this.id = id;
}
public void setName(String name) {
this.name = name;
}
public void setCode(String code) {
this.code = code;
}
}