package org.openecomp.portalapp.portal.domain; import org.openecomp.portalsdk.core.domain.support.DomainVo; public class EPAppRoleFunction extends DomainVo implements java.io.Serializable{ private static final long serialVersionUID = 7752385247460299630L; private Long roleId; private Long appId; private String code; /** * @return the roleId */ public Long getRoleId() { return roleId; } /** * @param roleId the roleId to set */ public void setRoleId(Long roleId) { this.roleId = roleId; } /** * @return the appId */ public Long getAppId() { return appId; } /** * @param appId the appId to set */ public void setAppId(Long appId) { this.appId = appId; } /** * @return the code */ public String getCode() { return code; } /** * @param code the code to set */ public void setCode(String code) { this.code = code; } }