Uses of Class
com.avoka.fc.core.entity.ServiceParameter
-
Packages that use ServiceParameter Package Description com.avoka.fc.core.dao Provides the Data Access Objects used by SmartForm Manager.com.avoka.fc.core.entity Provides the SmartForm Manager entity classes.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 ServiceParameter in com.avoka.fc.core.dao
Methods in com.avoka.fc.core.dao that return ServiceParameter Modifier and Type Method Description ServiceParameter
ServiceParameterDao. getServiceParameterForName(ServiceDefinition service, String name)
Return the parameter with the specified name and service definition.ServiceParameter
ServiceParameterDao. getServiceParameterForPK(Object id)
Return the service parameter with the specified OIDMethods in com.avoka.fc.core.dao that return types with arguments of type ServiceParameter Modifier and Type Method Description List<ServiceParameter>
ServiceParameterDao. getServiceParametersForService(ServiceDefinition service)
Return the list of service parameters for the given service definitionList<ServiceParameter>
ServiceParameterDao. getUnitTestServiceParametersForService(ServiceDefinition service)
Return the list of unit test service parameters for the given service definitionMethods in com.avoka.fc.core.dao with parameters of type ServiceParameter Modifier and Type Method Description void
ServiceParameterHistoryDao. createServiceParameterHistory(ServiceParameter serviceParameter)
Creates the service parameter history. -
Uses of ServiceParameter in com.avoka.fc.core.entity
Methods in com.avoka.fc.core.entity that return ServiceParameter Modifier and Type Method Description ServiceParameter
ServiceDefinition. getServiceParameter(String name)
Return the service parameter for the given name. -
Uses of ServiceParameter in com.avoka.fc.core.entity.auto
Fields in com.avoka.fc.core.entity.auto with type parameters of type ServiceParameter Modifier and Type Field Description static org.apache.cayenne.exp.Property<List<ServiceParameter>>
_ServiceDefinition. PARAMETERS
Provides the 'PARAMETERS' property.static org.apache.cayenne.exp.Property<ServiceParameter>
_ServiceParameterHistory. SERVICE_PARAMETER
Provides the 'SERVICE_PARAMETER' property.Methods in com.avoka.fc.core.entity.auto that return ServiceParameter Modifier and Type Method Description ServiceParameter
_ServiceParameterHistory. getServiceParameter()
Return the ServiceParameter.Methods in com.avoka.fc.core.entity.auto that return types with arguments of type ServiceParameter Modifier and Type Method Description List<ServiceParameter>
_ServiceDefinition. getParameters()
Return the Parameters.Methods in com.avoka.fc.core.entity.auto with parameters of type ServiceParameter Modifier and Type Method Description void
_ServiceDefinition. addToParameters(ServiceParameter obj)
Add the Parameters object.void
_ServiceDefinition. removeFromParameters(ServiceParameter obj)
Remove the Parameters object.void
_ServiceParameterHistory. setServiceParameter(ServiceParameter serviceParameter)
Set the ServiceParameter. -
Uses of ServiceParameter in com.avoka.fc.core.service.test
Methods in com.avoka.fc.core.service.test that return ServiceParameter Modifier and Type Method Description ServiceParameter
MockEntityService. createServiceParameter(ServiceDefinition serviceDefinition, String name, String type, boolean bindParameterFlag, boolean unitTestFlag, String value)
Create a service parameter
-