Uses of Class
com.avoka.fc.core.entity.ApplicationPackage
-
Packages that use ApplicationPackage 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 Provides the SmartForm Manager service classes.com.avoka.fc.core.service.archive Provides the SmartForm Manager portal import and export service.com.avoka.fc.core.service.test Provides web automated test services. -
-
Uses of ApplicationPackage in com.avoka.fc.core.dao
Methods in com.avoka.fc.core.dao that return ApplicationPackage Modifier and Type Method Description ApplicationPackage
ApplicationPackageDao. getApplicationPackageForName(Client client, String applicationName)
Return the application package with the specified client and nameApplicationPackage
ApplicationPackageDao. getApplicationPackageForPK(Object applicationPackageId)
Return the application package with the specified IDMethods in com.avoka.fc.core.dao that return types with arguments of type ApplicationPackage Modifier and Type Method Description List<ApplicationPackage>
ApplicationPackageDao. getActiveApplicationPackages(String selectedClientId, UserAccount userAccount)
Return the list of application packages for the currently selected organization and user.List<ApplicationPackage>
ApplicationPackageDao. getApplicationPackagesForClient(Client client, boolean activePackagesOnly)
Return the list of application packages for the given client.Methods in com.avoka.fc.core.dao with parameters of type ApplicationPackage Modifier and Type Method Description ApplicationForm
ApplicationFormDao. getApplicationForm(ApplicationPackage applicationPackage, Form form)
Return the ApplicationForm entity for the given application package and form, or null if none existsApplicationService
ApplicationServiceDao. getApplicationService(ApplicationPackage applicationPackage, ServiceDefinition service)
Return the ApplicationService entity for the given application package and service definition, or null if none exists -
Uses of ApplicationPackage in com.avoka.fc.core.entity.auto
Fields in com.avoka.fc.core.entity.auto with type parameters of type ApplicationPackage Modifier and Type Field Description static org.apache.cayenne.exp.Property<ApplicationPackage>
_ApplicationClientProperty. APPLICATION_PACKAGE
Provides the 'APPLICATION_PACKAGE' property.static org.apache.cayenne.exp.Property<ApplicationPackage>
_ApplicationConnection. APPLICATION_PACKAGE
Provides the 'APPLICATION_PACKAGE' property.static org.apache.cayenne.exp.Property<ApplicationPackage>
_ApplicationDelivery. APPLICATION_PACKAGE
Provides the 'APPLICATION_PACKAGE' property.static org.apache.cayenne.exp.Property<ApplicationPackage>
_ApplicationForm. APPLICATION_PACKAGE
Provides the 'APPLICATION_PACKAGE' property.static org.apache.cayenne.exp.Property<ApplicationPackage>
_ApplicationService. APPLICATION_PACKAGE
Provides the 'APPLICATION_PACKAGE' property.static org.apache.cayenne.exp.Property<List<ApplicationPackage>>
_Client. APPLICATION_PACKAGES
Provides the 'APPLICATION_PACKAGES' property.Methods in com.avoka.fc.core.entity.auto that return ApplicationPackage Modifier and Type Method Description ApplicationPackage
_ApplicationClientProperty. getApplicationPackage()
Return the ApplicationPackage.ApplicationPackage
_ApplicationConnection. getApplicationPackage()
Return the ApplicationPackage.ApplicationPackage
_ApplicationDelivery. getApplicationPackage()
Return the ApplicationPackage.ApplicationPackage
_ApplicationForm. getApplicationPackage()
Return the ApplicationPackage.ApplicationPackage
_ApplicationService. getApplicationPackage()
Return the ApplicationPackage.Methods in com.avoka.fc.core.entity.auto that return types with arguments of type ApplicationPackage Modifier and Type Method Description List<ApplicationPackage>
_Client. getApplicationPackages()
Return the ApplicationPackages.Methods in com.avoka.fc.core.entity.auto with parameters of type ApplicationPackage Modifier and Type Method Description void
_Client. addToApplicationPackages(ApplicationPackage obj)
Add the ApplicationPackages object.void
_Client. removeFromApplicationPackages(ApplicationPackage obj)
Remove the ApplicationPackages object.void
_ApplicationClientProperty. setApplicationPackage(ApplicationPackage applicationPackage)
Set the ApplicationPackage.void
_ApplicationConnection. setApplicationPackage(ApplicationPackage applicationPackage)
Set the ApplicationPackage.void
_ApplicationDelivery. setApplicationPackage(ApplicationPackage applicationPackage)
Set the ApplicationPackage.void
_ApplicationForm. setApplicationPackage(ApplicationPackage applicationPackage)
Set the ApplicationPackage.void
_ApplicationService. setApplicationPackage(ApplicationPackage applicationPackage)
Set the ApplicationPackage. -
Uses of ApplicationPackage in com.avoka.fc.core.service
Methods in com.avoka.fc.core.service with parameters of type ApplicationPackage Modifier and Type Method Description void
ApplicationPackageService. updateClientProperties(ApplicationPackage application, List<String> clientPropertyIds)
Update the client properties associated with the given application package.void
ApplicationPackageService. updateDeliveryDetails(ApplicationPackage application, List<String> deliveryDetailIds)
Update the delivery channels associated with the given application package.void
ApplicationPackageService. updateForms(ApplicationPackage application, List<String> formIds)
Update the forms associated with the given application package.void
ApplicationPackageService. updateServiceConnections(ApplicationPackage application, List<String> connectionIds)
Update the service connections associated with the given application package.void
ApplicationPackageService. updateServices(ApplicationPackage application, List<String> serviceIds)
Update the service definitions associated with the given application package. -
Uses of ApplicationPackage in com.avoka.fc.core.service.archive
Methods in com.avoka.fc.core.service.archive that return ApplicationPackage Modifier and Type Method Description protected ApplicationPackage
BaseArchiveService. readApplicationPackageReference(Element parentElement, Client targetClient)
Methods in com.avoka.fc.core.service.archive with parameters of type ApplicationPackage Modifier and Type Method Description protected void
BaseArchiveService. importServiceDefinition(Client client, ApplicationPackage application, boolean preserveExistingServices, boolean preserveDefaultServices, boolean preserveServiceConnections, Element serviceElement, List<String> warnings)
protected void
BaseArchiveService. writeApplicationPackageReference(Element parentElement, ApplicationPackage applicationPackage)
Creates a child element for a reference to an application package -
Uses of ApplicationPackage in com.avoka.fc.core.service.test
Methods in com.avoka.fc.core.service.test that return ApplicationPackage Modifier and Type Method Description ApplicationPackage
MockEntityService. createApplicationPackage(String name, Client client)
Create an application package with the given name and client
-