/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package org.jaxygen.netserviceapisample.business.dto; /** * * @author artur */ public class UserResponseDTO extends UserDTO { private int id; public int getId() { return id; } public void setId(int id) { this.id = id; } }