com.rmn.testrail.entity.BaseEntity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of testrailsdk Show documentation
Show all versions of testrailsdk Show documentation
A package for managing your TestRail information
package com.rmn.testrail.entity;
import com.rmn.testrail.service.TestRailService;
import java.io.Serializable;
/**
* @author mmerrell
*/
public class BaseEntity implements Serializable {
private static final long serialVersionUID = -3770248751816746138L;
private TestRailService testRailService;
protected TestRailService getTestRailService() { return testRailService; }
public void setTestRailService(TestRailService testRailService) { this.testRailService = testRailService; }
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy