All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.salesmanager.shop.model.security.PermissionEntity Maven / Gradle / Ivy

The newest version!
package com.salesmanager.shop.model.security;

import java.io.Serializable;

public class PermissionEntity implements Serializable {

	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;
	private Integer id;
	private String name;
	public String getName() {
		return name;
	}
	public void setName(String name) {
		this.name = name;
	}
	public Integer getId() {
		return id;
	}
	public void setId(Integer id) {
		this.id = id;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy