Files
spring-soap/jackson-annotations/src/main/java/com/baeldung/jackson/bidirection/ItemWithSerializer.java
2019-11-22 14:52:42 +02:00

18 lines
413 B
Java

package com.baeldung.jackson.bidirection;
public class ItemWithSerializer {
public int id;
public String itemName;
public UserWithSerializer owner;
public ItemWithSerializer() {
super();
}
public ItemWithSerializer(final int id, final String itemName, final UserWithSerializer owner) {
this.id = id;
this.itemName = itemName;
this.owner = owner;
}
}