com.venky.swf.plugins.collab.db.model.user.UserRole Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swf-plugin-collab Show documentation
Show all versions of swf-plugin-collab Show documentation
Succinct Web Framework - Plugin collaboration
package com.venky.swf.plugins.collab.db.model.user;
import com.venky.swf.db.annotations.column.IS_VIRTUAL;
import com.venky.swf.db.annotations.column.pm.PARTICIPANT;
import com.venky.swf.db.annotations.column.ui.HIDDEN;
import com.venky.swf.plugins.collab.db.model.CompanySpecific;
public interface UserRole extends com.venky.swf.plugins.security.db.model.UserRole, CompanySpecific{
@IS_VIRTUAL
@HIDDEN
@PARTICIPANT(redundant=true)
public Integer getCompanyId();
}