in juneau-petstore-api/src/main/java/org/apache/juneau/petstore/dto/Order.java [82:89]
public Order apply(Order o) {
this.id = o.getId();
this.petId = o.getPetId();
this.username = o.getUsername();
this.status = o.getStatus();
this.shipDate = o.getShipDate();
return this;
}