Uses of Class
com.avoka.fc.core.entity.TPac
-
Packages that use TPac Package Description com.avoka.fc.core.dao Provides the Data Access Objects used by SmartForm Manager.com.avoka.fc.core.entity.auto Provides the SmartForm Manager entity base classes, which are being maintained by Cayenne.com.avoka.fc.core.service.test Provides web automated test services. -
-
Uses of TPac in com.avoka.fc.core.dao
Methods in com.avoka.fc.core.dao that return TPac Modifier and Type Method Description TPac
TPacDao. getTPacForPK(Object tpacId)
Return the TPac with the specified IDTPac
TPacDao. getTPacForProjectCode(Client client, String projectCode)
Return the TPac with the specified client and project codeMethods in com.avoka.fc.core.dao that return types with arguments of type TPac Modifier and Type Method Description List<TPac>
TPacDao. getActiveTPacs(String selectedClientId, UserAccount userAccount, String keyword)
Return the list of TPac objects for the currently selected organization and user.List<TPac>
TPacDao. getTPacsForClient(Client client)
Return the list of TPac for the given client. -
Uses of TPac in com.avoka.fc.core.entity.auto
Fields in com.avoka.fc.core.entity.auto with type parameters of type TPac Modifier and Type Field Description static org.apache.cayenne.exp.Property<List<TPac>>
_UserAccount. INSTALLED_TPACS
Provides the 'INSTALLED_TPACS' property.static org.apache.cayenne.exp.Property<TPac>
_TPacData. TPAC
Provides the 'TPAC' property.static org.apache.cayenne.exp.Property<List<TPac>>
_Client. TPACS
Provides the 'TPACS' property.Methods in com.avoka.fc.core.entity.auto that return TPac Modifier and Type Method Description TPac
_TPacData. getTpac()
Return the Tpac.Methods in com.avoka.fc.core.entity.auto that return types with arguments of type TPac Modifier and Type Method Description List<TPac>
_UserAccount. getInstalledTPacs()
Return the InstalledTPacs.List<TPac>
_Client. getTpacs()
Return the Tpacs.Methods in com.avoka.fc.core.entity.auto with parameters of type TPac Modifier and Type Method Description void
_UserAccount. addToInstalledTPacs(TPac obj)
Add the InstalledTPacs object.void
_Client. addToTpacs(TPac obj)
Add the Tpacs object.void
_UserAccount. removeFromInstalledTPacs(TPac obj)
Remove the InstalledTPacs object.void
_Client. removeFromTpacs(TPac obj)
Remove the Tpacs object.void
_TPacData. setTpac(TPac tpac)
Set the Tpac. -
Uses of TPac in com.avoka.fc.core.service.test
Methods in com.avoka.fc.core.service.test that return TPac Modifier and Type Method Description TPac
MockEntityService. createTPac(String projectCode, Client client)
Create a tpac with the given code and client
-