com.salesmanager.shop.model.user.UserNameEntity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sm-shop-model Show documentation
Show all versions of sm-shop-model Show documentation
sm-shop-model contains Shopizer model objects for api
The newest version!
package com.salesmanager.shop.model.user;
import java.io.Serializable;
import javax.validation.constraints.NotEmpty;
public class UserNameEntity implements Serializable {
/**
*
*/
private static final long serialVersionUID = 1L;
@NotEmpty
private String userName;
public String getUserName() {
return userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
}