Uses of Class
com.avoka.fc.core.entity.ServiceConnection
-
Packages that use ServiceConnection 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.archive Provides the SmartForm Manager portal import and export service.com.avoka.tm.vo Provides Value Object persistent entity classes. -
-
Uses of ServiceConnection in com.avoka.fc.core.dao
Methods in com.avoka.fc.core.dao that return ServiceConnection Modifier and Type Method Description ServiceConnection
ServiceConnectionDao. getServiceConnection(Client client, String name)
Return the service connection for the given service name and client (or the global service connection if client is null).ServiceConnection
ServiceConnectionDao. getServiceConnectionForName(String name)
ServiceConnection
ServiceConnectionDao. getServiceConnectionForPK(Object id)
Return the service connection with the specified OIDServiceConnection
ServiceConnectionDao. getServiceConnectionWithFallback(Client client, String name)
Return the service connection for the given service name and client (or the global service connection if clientId is null).Methods in com.avoka.fc.core.dao that return types with arguments of type ServiceConnection Modifier and Type Method Description List<ServiceConnection>
ServiceConnectionDao. getServiceConnectionList()
Return the list of all service connections, ordered by name and clientList<ServiceConnection>
ServiceConnectionDao. getServiceConnectionList(Client client)
Returns a List of service connection which include only the global service connection and the connections belonging to the organisation.List<ServiceConnection>
ServiceConnectionDao. getServiceConnectionList(String clientId, String keyword, boolean clientOnly)
Return list of service connections matching the given search criteria -
Uses of ServiceConnection in com.avoka.fc.core.entity.auto
Fields in com.avoka.fc.core.entity.auto with type parameters of type ServiceConnection Modifier and Type Field Description static org.apache.cayenne.exp.Property<ServiceConnection>
_ServiceDefinition. CONNECTION
Provides the 'CONNECTION' property.static org.apache.cayenne.exp.Property<ServiceConnection>
_ApplicationConnection. SERVICE_CONNECTION
Provides the 'SERVICE_CONNECTION' property.static org.apache.cayenne.exp.Property<List<ServiceConnection>>
_Client. SERVICE_CONNECTIONS
Provides the 'SERVICE_CONNECTIONS' property.Methods in com.avoka.fc.core.entity.auto that return ServiceConnection Modifier and Type Method Description ServiceConnection
_ServiceDefinition. getConnection()
Return the Connection.ServiceConnection
_ApplicationConnection. getServiceConnection()
Return the ServiceConnection.Methods in com.avoka.fc.core.entity.auto that return types with arguments of type ServiceConnection Modifier and Type Method Description List<ServiceConnection>
_Client. getServiceConnections()
Return the ServiceConnections.Methods in com.avoka.fc.core.entity.auto with parameters of type ServiceConnection Modifier and Type Method Description void
_Client. addToServiceConnections(ServiceConnection obj)
Add the ServiceConnections object.void
_Client. removeFromServiceConnections(ServiceConnection obj)
Remove the ServiceConnections object.void
_ServiceDefinition. setConnection(ServiceConnection connection)
Set the Connection.void
_ApplicationConnection. setServiceConnection(ServiceConnection serviceConnection)
Set the ServiceConnection. -
Uses of ServiceConnection in com.avoka.fc.core.service.archive
Methods in com.avoka.fc.core.service.archive that return ServiceConnection Modifier and Type Method Description protected ServiceConnection
BaseArchiveService. importServiceConnection(Client client, ServiceDefinition serviceDefinition, boolean preserveServiceConnections, Element connectionElement, List<String> warnings)
Methods in com.avoka.fc.core.service.archive with parameters of type ServiceConnection Modifier and Type Method Description protected void
BaseArchiveService. addServiceConnection(ZipOutputStream zos, ServiceConnection connection, Element parentElement)
-
Uses of ServiceConnection in com.avoka.tm.vo
Constructors in com.avoka.tm.vo with parameters of type ServiceConnection Constructor Description SvcConn(ServiceConnection sc)
Create a service connection value object from the given entity parameter.
-