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

com.venky.swf.plugins.collab.db.model.CompanySpecific Maven / Gradle / Ivy

There is a newer version: 2.12
Show newest version
package com.venky.swf.plugins.collab.db.model;

import com.venky.swf.db.annotations.column.IS_NULLABLE;
import com.venky.swf.db.annotations.column.UNIQUE_KEY;
import com.venky.swf.db.annotations.column.indexing.Index;
import com.venky.swf.db.annotations.column.pm.PARTICIPANT;
import com.venky.swf.plugins.collab.db.model.participants.admin.Company;

public interface CompanySpecific {
	@PARTICIPANT
	@IS_NULLABLE(false)
	@Index
	@UNIQUE_KEY
	public Integer getCompanyId();
	public void setCompanyId(Integer id);
	public Company getCompany();
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy