Skip to content

Instantly share code, notes, and snippets.

@krams915
Created December 10, 2012 03:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save krams915/4248274 to your computer and use it in GitHub Desktop.
Save krams915/4248274 to your computer and use it in GitHub Desktop.
Spring Social UserDto.java
package org.krams.response;
import java.io.Serializable;
public class UserDto implements Serializable {
private static final long serialVersionUID = -5488702255320352709L;
private Long id;
private String firstName;
private String lastName;
private String username;
private String password;
private String repassword;
private Integer role;
...getters/setters
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment