Uses of Class
com.ail.core.Type

Packages that use Type
com.ail.core   
com.ail.core.command   
com.ail.core.configure   
com.ail.core.configure.finder   
com.ail.core.configure.server   
com.ail.core.document   
com.ail.core.document.generatedocument   
com.ail.core.document.model   
com.ail.core.factory   
com.ail.core.logging   
com.ail.core.persistence   
com.ail.core.persistence.hibernate   
com.ail.core.persistence.jdo   
com.ail.core.product   
com.ail.core.product.listproducts   
com.ail.core.product.newproducttype   
com.ail.core.product.registerproduct   
com.ail.core.product.removeproduct   
com.ail.core.product.resetallproducts   
com.ail.core.product.resetproduct   
com.ail.core.product.updateproduct   
com.ail.core.ui   
com.ail.core.validator   
com.ail.core.xmlbinding   
com.ail.coretest.addressbook   
com.ail.coretest.service   
com.ail.financial   
com.ail.insurance.acceptance   
com.ail.insurance.acceptance.acceptquotation   
com.ail.insurance.claim   
com.ail.insurance.diary   
com.ail.insurance.diary.cancelentry   
com.ail.insurance.diary.makeentry   
com.ail.insurance.policy   
com.ail.insurance.quotation.addpolicynumber   
com.ail.insurance.quotation.addquotenumber   
com.ail.insurance.quotation.assessrisk   
com.ail.insurance.quotation.calculatebrokerage   
com.ail.insurance.quotation.calculatecommission   
com.ail.insurance.quotation.calculatemanagementcharge   
com.ail.insurance.quotation.calculatepremium   
com.ail.insurance.quotation.calculatetax   
com.ail.insurance.quotation.enforcecompliance   
com.ail.insurance.quotation.fetchdocument   
com.ail.insurance.quotation.generatedocument   
com.ail.insurance.quotation.notifyparty   
com.ail.insurance.quotation.refreshassessmentsheets   
com.ail.insurance.subrogation.makearecovery   
com.ail.util   
 

Uses of Type in com.ail.core
 

Subclasses of Type in com.ail.core
 class Allowable
           
 class Attribute
          An attribute is defined as "One of numerous aspects, as of a subject".
 class CommandScript
          This class represents a scripted command object.
 class History
          The history object is a collection of Version objects which document the change history of an entity.
 class NullService
          This entry point does nothing.
 class Service
          The Service abstract class is implemented by all classes that may be exposed as component entry points.
 class Version
          This type represents the version details of an artifact in a live system.
 class VersionEffectiveDate
          VersionEffectiveDates are used to select the configuration a CoreUser should be using.
 

Methods in com.ail.core with type parameters of type Type
<T extends Type>
T
Core.create(T object)
           
<T extends Type>
T
CoreProxy.create(T type)
          Create a persistent copy of an object.
<T extends Type>
T
Core.load(java.lang.Class<T> type, long systemId)
           
<T extends Type>
T
CoreProxy.load(java.lang.Class<T> type, long systemId)
          Load a specific instance of a type by ID.
<T extends Type>
T
Core.update(T object)
           
<T extends Type>
T
CoreProxy.update(T type)
          Update the persistent copy of an object from its in memory copy.
 

Methods in com.ail.core that return Type
static Type Attribute.getReferenceContext()
           
 Type Core.newProductType(java.lang.String productName)
          Instantiate the default type associated with a product.
 Type CoreProxy.newProductType(java.lang.String productName)
          Instantiate the default type associated with a product.
 Type Core.newProductType(java.lang.String productName, java.lang.String typeName)
          Instantiate a type associated with a product.
 Type CoreProxy.newProductType(java.lang.String productName, java.lang.String typeName)
          Instantiate a type associated with a product.
 Type Core.newType(java.lang.String typeName)
          Create a instance of the named type object.
 Type CoreProxy.newType(java.lang.String typeName)
          Create a instance of the named type object.
 Type Core.queryUnique(java.lang.String queryName, java.lang.Object... queryArgs)
           
 Type CoreProxy.queryUnique(java.lang.String queryName, java.lang.Object... queryArgs)
          Query persistent storage for the single object returned by a query.
 

Methods in com.ail.core with parameters of type Type
 void Core.delete(Type type)
           
 void CoreProxy.delete(Type type)
          Delete one or more objects from persistent storage.
static java.lang.String Functions.expand(java.lang.String src, Type model)
          Utility method to expand 'variables' embedded in a string with respect to a model.
static void Functions.expand(java.io.Writer writer, java.io.InputStream content, Type model)
          Utility method which reads content from a url, expands any variables it finds embedded in the content against the model supplied, and writes the output to a specified writer.
static void Functions.expand(java.io.Writer writer, java.lang.String content, Type model)
          Utility method which expands any variables it finds embedded in the passed in content against the model supplied, and writes the output to a specified writer.
static void Functions.expand(java.io.Writer writer, java.net.URL url, Type model)
          Utility method which reads content from a url, expands any variables it finds embedded in the content against the model supplied, and writes the output to a specified writer.
 byte[] Core.generateDocument(java.lang.String productName, java.lang.String documentDefinitionName, Type model)
          Generate a document and return it as a byte[].
 byte[] CoreProxy.generateDocument(java.lang.String productName, java.lang.String documentDefinitionName, Type model)
          Generate a document and return it as a byte[].
 void Type.mergeWithDataFrom(Type donor, Core core)
          Merge data from a specified type into this.
static void Attribute.setReferenceContext(Type ctx)
          Set the context against which references within Attributes in this thread will be evaluated.
 

Uses of Type in com.ail.core.command
 

Subclasses of Type in com.ail.core.command
 class AbstractCommand
          This is the super class of all command objects.
 class Accessor
          This class is extended by all accessor classes.
 class BeanShellAccessor
          This accessor supports the use of BeanShell scripts as services.
 class ClassAccessor
          This accessor supports the use of class instances as services.
 class Command
           
 class CommandArgImp
          Parent class of all command args.
 class DroolsAccessor
          This Accessor supports the use of Drools decision tables as services.
 class DroolsDecisionTableAccessor
          This Accessor supports the use of Drools decision tables as services.
 class EJBAccessor
          Provide access to EJB entry points.
 class JaninoAccessor
          This accessor provides access to services implented using Janino.
 class JMSAccessor
          Deployment specific command for use with JMS.
 class WebServiceAccessor
          Accessor providing access to web service based commands.
 class XSLTAccessor
           
 

Uses of Type in com.ail.core.configure
 

Subclasses of Type in com.ail.core.configure
 class Builder
          A "Builder" represents an instance of a class builder - i.e.
 class Builders
           
 class Component
          This is the base of the composite patten implementation which defines configuration data.
 class Configuration
          This class represents the top level of the composite.
 class ConfigurationSummary
          This value object encapsulates the details of a configuration, but excludes the configuration itself.
 class Group
          A Group simply provides a container to give the Configuration file more structure.
 class Parameter
          This type represents the simplest element used in the configuration pattern.
 class PersistenceMapping
          This class holds Persistance information for a configuration.
 class Type
           
 class Types
          This class is simply a binder containing a number of objects of type 'Type'.
 class XMLMapping
          This class holds XML databinding information for a configuration.
 

Methods in com.ail.core.configure that return Type
 Type Type.getPrototype()
           
 

Methods in com.ail.core.configure with parameters of type Type
 void Type.setPrototype(Type prototype)
           
 

Uses of Type in com.ail.core.configure.finder
 

Subclasses of Type in com.ail.core.configure.finder
 class GetClassListArgImp
           
 class GetClassListCommand
           
 class GetClassListService
          This service finds the classes that implement or extend a given base class.
 

Uses of Type in com.ail.core.configure.server
 

Subclasses of Type in com.ail.core.configure.server
 class CatalogCarArgImp
           
 class CatalogCarCommand
           
 class CatalogCarService
          Service to catalog the contents of a CAR file.
 class DeployCarArgImp
           
 class DeployCarCommand
           
 class DeployCarService
           
 class GetCommandScriptArgImp
           
 class GetCommandScriptCommand
           
 class GetCommandScriptService
           
 class GetConfigurationArgImp
          Concrete implementation of the GetConfigurationArg interface.
 class GetConfigurationCommand
           
 class GetConfigurationService
           
 class GetNamespacesArgImp
          Concrete implementation of the GetConfigurationArg interface.
 class GetNamespacesCommand
          Fetch a list of all the configuration namespaces known to the system.
 class GetNamespacesHistoryArgImp
          Concrete implementation of the GetConfigurationArg interface.
 class GetNamespacesHistoryCommand
           
 class GetNamespacesHistoryService
           
 class GetNamespacesService
           
 class PackageCarArgImp
           
 class PackageCarCommand
           
 class PackageCarService
           
 class SetCommandScriptArgImp
           
 class SetCommandScriptCommand
           
 class SetCommandScriptService
           
 class SetConfigurationArgImp
           
 class SetConfigurationCommand
           
 class SetConfigurationService
           
 

Uses of Type in com.ail.core.document
 

Methods in com.ail.core.document with parameters of type Type
 byte[] Document.generateDocument(java.lang.String productName, java.lang.String documentDefinitionName, Type model)
          Render a document and return it as a byte array.
 

Uses of Type in com.ail.core.document.generatedocument
 

Subclasses of Type in com.ail.core.document.generatedocument
 class JavaMergeDataService
           
 class MergeDataArgImp
           
 class MergeDataCommand
           
 class RenderDocumentArgImp
           
 class RenderDocumentCommand
           
 class RenderPdfDocumentService
          This class provides an implementation of the render document service which renders to PDF using Apache FOP.

The render options supported by this implementation match up one-to-one with those supported by the Apache FOP renderer: allowCopyContent allowEditContent allowEditAnnotations allowPrint userPassword ownerPassword Specifying any of the above in RenderDocumentArg.getRenderOptionsArg() will result in the option being enabled.

 class StyleDocumentArgImp
           
 class StyleDocumentCommand
           
 

Methods in com.ail.core.document.generatedocument that return Type
 Type MergeDataCommand.getModelArg()
          Getter for the modelArg property.
 Type MergeDataArgImp.getModelArg()
           
 Type MergeDataArg.getModelArg()
          Getter for the modelArg property.
 Type GenerateDocumentCommand.getModelArg()
          Getter for the modelArg property.
 Type GenerateDocumentArgImp.getModelArg()
          Getter for the modelArg property.
 Type GenerateDocumentArg.getModelArg()
          Getter for the modelArg property.
 

Methods in com.ail.core.document.generatedocument with parameters of type Type
 void MergeDataCommand.setModelArg(Type modelArg)
          Setter for the modelArg property.
 void MergeDataArgImp.setModelArg(Type modelArg)
           
 void MergeDataArg.setModelArg(Type modelArg)
          Setter for the modelArg property.
 void GenerateDocumentCommand.setModelArg(Type modelArg)
          Setter for the modelArg property.
 void GenerateDocumentArgImp.setModelArg(Type modelArg)
          Setter for the modelArg property.
 void GenerateDocumentArg.setModelArg(Type modelArg)
          Setter for the modelArg property.
 

Uses of Type in com.ail.core.document.model
 

Subclasses of Type in com.ail.core.document.model
 class BlockData
          An instance of BlockData defines the data that should appear in some area of the rendered document.
 class ChapterData
          A chapter represents a part of a document which defines the characteristics of one or more contiguious pages.
 class DocumentData
           
 class DocumentDefinition
          The document definition acts as a container for all the information that the document production service needs in order to know how to generate a document.
 class FooterData
           
 class HeaderData
           
 class ItemContainer
          A document structure item that has children.
 class ItemData
          Node of the document structure object graph.
 class ModelData
          Node of the document structure object graph.
 class RenderContext
          An instance of this class is passed into each invocation of the ItemData method.
 class RepeatingData
           
 class UrlData
          Node of the document structure object graph.
 

Methods in com.ail.core.document.model that return Type
 Type RenderContext.getModel()
          Get the instance of the model being rendered
 

Methods in com.ail.core.document.model with parameters of type Type
 void RenderContext.setModel(Type model)
          RenderContext.getModel()
 

Constructors in com.ail.core.document.model with parameters of type Type
RenderContext(java.io.PrintWriter output, Type model)
           
 

Uses of Type in com.ail.core.factory
 

Methods in com.ail.core.factory that return Type
 Type Factory.newType(java.lang.String typeName)
          Create a new instance of the named type.
 Type FactoryHandler.newType(java.lang.String name, ConfigurationOwner owner, Core core)
           
 

Uses of Type in com.ail.core.logging
 

Subclasses of Type in com.ail.core.logging
 class LoggerArgImp
           
 class LoggerCommand
           
 class SystemOutLoggerService
          This logging entry point directs log messages to the System print streams 'out' and 'err'.
 

Uses of Type in com.ail.core.persistence
 

Subclasses of Type in com.ail.core.persistence
 class CloseSessionArgImp
          
 class CloseSessionCommand
           
 class CreateArgImp
          
 class CreateCommand
           
 class DeleteArgImp
          
 class DeleteCommand
           
 class LoadArgImp
          
 class LoadCommand
           
 class OpenSessionArgImp
          
 class OpenSessionCommand
           
 class QueryArgImp
          
 class QueryCommand
           
 class UpdateArgImp
          
 class UpdateCommand
           
 

Methods in com.ail.core.persistence with type parameters of type Type
<T extends Type>
T
Persistence.create(T object)
          Create a persistent copy of an object.
<T extends Type>
T
Persistence.load(java.lang.Class<T> type, long systemId)
          Load a specific instance of a type by ID.
<T extends Type>
T
Persistence.update(T object)
          Update the persistent copy of an object from its in memory copy.
 

Methods in com.ail.core.persistence that return Type
 Type DeleteCommand.getObjectArg()
          Getter for the objectArg property.
 Type UpdateCommand.getObjectArg()
          Getter for the objectArg property.
 Type UpdateArg.getObjectArg()
          Getter for the objectArg property.
 Type DeleteArg.getObjectArg()
          Getter for the objectArg property.
 Type DeleteArgImp.getObjectArg()
          Getter for the objectArg property.
 Type UpdateArgImp.getObjectArg()
          Getter for the objectArg property.
 Type CreateArg.getObjectArg()
          Getter for the objectArg property.
 Type CreateArgImp.getObjectArg()
          Getter for the objectArg property.
 Type CreateCommand.getObjectArg()
          Getter for the objectArg property.
 Type LoadCommand.getObjectRet()
          Getter for the objectArg property.
 Type LoadArg.getObjectRet()
          Getter for the objectArg property.
 Type LoadArgImp.getObjectRet()
          Getter for the objectArg property.
 Type QueryArgImp.getUniqueResultRet()
           
 Type QueryCommand.getUniqueResultRet()
           
 Type QueryArg.getUniqueResultRet()
          Gets the unique result - assuming there was only one object returned.
 Type Persistence.queryUnique(java.lang.String queryName, java.lang.Object... queryArgs)
          Query persistent storage for the single object returned by a query.
 

Methods in com.ail.core.persistence with parameters of type Type
 void Persistence.delete(Type object)
          Delete one or more objects from persistent storage.
 void DeleteCommand.setObjectArg(Type objectArg)
          Setter for the objectArg property.
 void UpdateCommand.setObjectArg(Type objectArg)
          Setter for the objectArg property.
 void UpdateArg.setObjectArg(Type objectArg)
          Setter for the objectArg property.
 void DeleteArg.setObjectArg(Type objectArg)
          Setter for the objectArg property.
 void DeleteArgImp.setObjectArg(Type objectArg)
          Setter for the objectArg property.
 void UpdateArgImp.setObjectArg(Type objectArg)
          Setter for the objectArg property.
 void CreateArg.setObjectArg(Type objectArg)
          Setter for the objectArg property.
 void CreateArgImp.setObjectArg(Type objectArg)
          Setter for the objectArg property.
 void CreateCommand.setObjectArg(Type objectArg)
          Setter for the objectArg property.
 void LoadCommand.setObjectRet(Type objectRet)
          Setter for the objectArg property.
 void LoadArg.setObjectRet(Type objectArg)
          Setter for the objectArg property.
 void LoadArgImp.setObjectRet(Type objectRet)
          Setter for the objectArg property.
 void QueryArgImp.setUniqueResultRet(Type uniqueResultsRet)
           
 void QueryCommand.setUniqueResultRet(Type type)
           
 void QueryArg.setUniqueResultRet(Type type)
          Set the unique result.
 

Uses of Type in com.ail.core.persistence.hibernate
 

Subclasses of Type in com.ail.core.persistence.hibernate
 class HibernateCloseSessionService
          Implemention of the open session service for Hibernate
 class HibernateCreateService
          Implemention of the create service for Hibernate
 class HibernateDeleteService
          Implemention of the delete service for Hibernate
 class HibernateLoadService
          Implemention of the update service for Hibernate
 class HibernateOpenSessionService
          Implementation of the open session service for Hibernate
 class HibernateQueryService
          Implementation of the query service for Hibernate
 class HibernateUpdateService
          Implemention of the update service for Hibernate
 

Uses of Type in com.ail.core.persistence.jdo
 

Subclasses of Type in com.ail.core.persistence.jdo
 class Query
           
 class QueryResults
           
 

Uses of Type in com.ail.core.product
 

Subclasses of Type in com.ail.core.product
 class ProductDetails
          This class encapsulates the details which define a product's entry in the product catalog.
 

Methods in com.ail.core.product that return Type
 Type Product.newProductType(java.lang.String productName)
          Instantiate the default type associated with a product.
 Type Product.newProductType(java.lang.String productName, java.lang.String typeName)
          Instantiate a type associated with a product.
 

Uses of Type in com.ail.core.product.listproducts
 

Subclasses of Type in com.ail.core.product.listproducts
 class ListProductsArgImp
           
 class ListProductsCommand
           
 class ListProductsService
           
 

Uses of Type in com.ail.core.product.newproducttype
 

Subclasses of Type in com.ail.core.product.newproducttype
 class NewProductTypeArgImp
           
 class NewProductTypeCommand
           
 class NewProductTypeService
          Instantiate a type defined by a product.
 

Methods in com.ail.core.product.newproducttype that return Type
 Type NewProductTypeCommand.getTypeRet()
          Getter for the typeRet property.
 Type NewProductTypeArgImp.getTypeRet()
          Getter for the typeRet property.
 Type NewProductTypeArg.getTypeRet()
          Getter for the typeRet property.
 

Methods in com.ail.core.product.newproducttype with parameters of type Type
 void NewProductTypeCommand.setTypeRet(Type typeRet)
          Setter for the typeRet property.
 void NewProductTypeArgImp.setTypeRet(Type typeRet)
          Setter for the typeRet property.
 void NewProductTypeArg.setTypeRet(Type typeRet)
          Setter for the typeRet property.
 

Uses of Type in com.ail.core.product.registerproduct
 

Subclasses of Type in com.ail.core.product.registerproduct
 class RegisterProductArgImp
           
 class RegisterProductCommand
           
 class RegisterProductService
           
 

Uses of Type in com.ail.core.product.removeproduct
 

Subclasses of Type in com.ail.core.product.removeproduct
 class RemoveProductArgImp
           
 class RemoveProductCommand
           
 class RemoveProductService
           
 

Uses of Type in com.ail.core.product.resetallproducts
 

Subclasses of Type in com.ail.core.product.resetallproducts
 class ResetAllProductsArgImp
           
 class ResetAllProductsCommand
           
 class ResetAllProductsService
           
 

Uses of Type in com.ail.core.product.resetproduct
 

Subclasses of Type in com.ail.core.product.resetproduct
 class ResetProductArgImp
           
 class ResetProductCommand
           
 class ResetProductService
           
 

Uses of Type in com.ail.core.product.updateproduct
 

Subclasses of Type in com.ail.core.product.updateproduct
 class UpdateProductArgImp
           
 class UpdateProductCommand
           
 class UpdateProductService
           
 

Uses of Type in com.ail.core.ui
 

Subclasses of Type in com.ail.core.ui
 class ConfigureUploadForm
          Form object used to back the CAR file upload portlet
 

Uses of Type in com.ail.core.validator
 

Subclasses of Type in com.ail.core.validator
 class CommonsValidatorService
          Implementation of the Validator service using the jakarta commons validator project.
 class ValidatorArgImp
           
 class ValidatorCommand
           
 class ValidatorFailureDetail
           
 class ValidatorResult
           
 

Uses of Type in com.ail.core.xmlbinding
 

Subclasses of Type in com.ail.core.xmlbinding
 class CastorFromXMLService
          This entry point uses the castor framework to unmarshal an XMLString into the object it represents.
 class CastorToXMLService
          This entry point converts an objects into an XMLString representing it using the castor framework.
 class FromXMLArgImp
          This is the implementation of FromXMLArg used to pass arguments to and from the FromXML entry point(s).
 class FromXMLCommand
          This command is responsible for converting strings of XML into instances of the objects they represent.
 class ToXMLArgImp
          This is a concrete implementation of the CommandArg for the ToXML entry point.
 class ToXMLCommand
          This command is responsible for converting objects into strings of XML that represent them.
 

Uses of Type in com.ail.coretest.addressbook
 

Subclasses of Type in com.ail.coretest.addressbook
 class Address
           
 class AddressBook
           
 class Company
           
 class Organisation
           
 class Party
           
 class Person
           
 

Uses of Type in com.ail.coretest.service
 

Subclasses of Type in com.ail.coretest.service
 class TestArgImp
           
 class TestCommand
           
 class TestService
           
 class TypeWithHashtable
          Type class with a Hashtable property, to help TestTypeClone.
 class TypeWithMap
          Sample Type with a Set to help in testing the core's clonning
 class TypeWithSet
          Sample Type with a Set to help in testing the core's clonning
 

Uses of Type in com.ail.financial
 

Subclasses of Type in com.ail.financial
 class CurrencyAmount
          Instances of this class represent amounts of money.
 class DirectDebit
           
 class MoneyProvision
          MoneyProvision objects represents an amount of money that is payable or due from one party to another party.
 class PaymentCard
          Represents the details of a payment card.
 class PaymentMethod
           
 class PaymentSchedule
          A payment schedule simply groups together a collection of MoneyProvisions.
 

Uses of Type in com.ail.insurance.acceptance
 

Subclasses of Type in com.ail.insurance.acceptance
 class AssessPaymentOptionsArgImp
           
 class AssessPaymentOptionsCommand
           
 class AssessPaymentOptionsService
          Given a policy at quote status this service returns a list of appropriate payment options.
 class CollectPremiumArgImp
           
 class CollectPremiumCommand
           
 class CollectPremiumService
           
 class PolicyDocumentation
           
 class ProduceDocumentationArgImp
           
 class ProduceDocumentationCommand
           
 class ProduceDocumentationService
           
 class PutOnRiskArgImp
           
 class PutOnRiskCommand
           
 class PutOnRiskService
           
 

Uses of Type in com.ail.insurance.acceptance.acceptquotation
 

Subclasses of Type in com.ail.insurance.acceptance.acceptquotation
 class AcceptQuotationArgImp
           
 class AcceptQuotationCommand
           
 class AcceptQuotationService
           
 

Uses of Type in com.ail.insurance.claim
 

Subclasses of Type in com.ail.insurance.claim
 class ADR
           
 class Claim
           
 class ClaimSection
           
 class Recovery
           
 

Uses of Type in com.ail.insurance.diary
 

Subclasses of Type in com.ail.insurance.diary
 class DiaryEntry
           
 

Uses of Type in com.ail.insurance.diary.cancelentry
 

Subclasses of Type in com.ail.insurance.diary.cancelentry
 class CancelEntryArgImp
           
 class CancelEntryCommand
           
 class CancelEntryService
           
 

Uses of Type in com.ail.insurance.diary.makeentry
 

Subclasses of Type in com.ail.insurance.diary.makeentry
 class MakeEntryArgImp
           
 class MakeEntryCommand
           
 class MakeEntryService
           
 

Uses of Type in com.ail.insurance.policy
 

Subclasses of Type in com.ail.insurance.policy
 class AssessmentLine
           
 class AssessmentNote
          Any number of assessment notes may be added to an assessment sheet.
 class AssessmentSheet
          Groups together a collection of assessment lines and provides utility methods for manipulating them.
 class Asset
          An insured thing, or a thing about which information is collected and upon which risk (and other factors) are assessed.
 class Behaviour
          A behaviour is a type of assessment line, specifically one that has an effect on a calculated amount.
 class CalculationLine
          A Calculation Line is an assessment line which contains a calculated element.
 class Contract
          A contract collects a group of policy objects together into a larger unit.
 class Coverage
          Coverages define or constrain the types of cover offered by a Section.
 class Excess
          An Excess represents the amount for which the policy holder is liable before a claim can be made.
 class FixedSum
          A type of assessment line representing a fixed amount (as opposed to one that is calculated by applying a rate to another line).
 class Marker
          A marker assessment line represents a generalization of a referral or decline.
 class MarkerResolution
          An assessment line indicating that a 'Marker' has been resolved.
 class Policy
           
 class RateBehaviour
          An assessment line which applies a rate behaviour - i.e.
 class Reference
          Points to another part/element of a policy.
 class Section
          A section with the policy.
 class Subjectivity
          Subjectivity Assessment line.
 class SumBehaviour
          An assessment line which contributes a fixed sum to another line.
 class Totalizer
          The totalizer calculation line adds any number of other named lines up to make a total, and optionally contributes that total to another line.
 class Wording
          Represents an individual wording either by id or by text.
 

Uses of Type in com.ail.insurance.quotation.addpolicynumber
 

Subclasses of Type in com.ail.insurance.quotation.addpolicynumber
 class AddPolicyNumberArgImp
           
 class AddPolicyNumberCommand
           
 class AddPolicyNumberService
           
 class GeneratePolicyNumberRuleArgImp
           
 class GeneratePolicyNumberRuleCommand
           
 

Uses of Type in com.ail.insurance.quotation.addquotenumber
 

Subclasses of Type in com.ail.insurance.quotation.addquotenumber
 class AddQuoteNumberArgImp
           
 class AddQuoteNumberCommand
           
 class AddQuoteNumberService
          This service generates quotation numbers and adds them to policy objects.
 class GenerateQuoteNumberRuleArgImp
           
 class GenerateQuoteNumberRuleCommand
           
 

Uses of Type in com.ail.insurance.quotation.assessrisk
 

Subclasses of Type in com.ail.insurance.quotation.assessrisk
 class AssessPolicyRiskArgImp
           
 class AssessPolicyRiskCommand
           
 class AssessRiskArgImp
           
 class AssessRiskCommand
           
 class AssessRiskService
           
 class AssessSectionRiskArgImp
           
 class AssessSectionRiskCommand
           
 

Uses of Type in com.ail.insurance.quotation.calculatebrokerage
 

Subclasses of Type in com.ail.insurance.quotation.calculatebrokerage
 class CalculateBrokerageArgImp
           
 class CalculateBrokerageCommand
           
 class CalculateBrokerageService
           
 class CalculatePolicyBrokerageArgImp
           
 class CalculatePolicyBrokerageCommand
           
 

Uses of Type in com.ail.insurance.quotation.calculatecommission
 

Subclasses of Type in com.ail.insurance.quotation.calculatecommission
 class CalculateCommissionArgImp
           
 class CalculateCommissionCommand
           
 class CalculateCommissionService
           
 class CalculatePolicyCommissionArgImp
           
 class CalculatePolicyCommissionCommand
           
 

Uses of Type in com.ail.insurance.quotation.calculatemanagementcharge
 

Subclasses of Type in com.ail.insurance.quotation.calculatemanagementcharge
 class CalculateManagementChargeArgImp
           
 class CalculateManagementChargeCommand
           
 class CalculateManagementChargeService
           
 class CalculatePolicyMgmtChgArgImp
           
 class CalculatePolicyMgmtChgCommand
           
 

Uses of Type in com.ail.insurance.quotation.calculatepremium
 

Subclasses of Type in com.ail.insurance.quotation.calculatepremium
 class CalculatePremiumArgImp
           
 class CalculatePremiumCommand
           
 class CalculatePremiumService
           
 

Uses of Type in com.ail.insurance.quotation.calculatetax
 

Subclasses of Type in com.ail.insurance.quotation.calculatetax
 class CalculatePolicyTaxArgImp
           
 class CalculatePolicyTaxCommand
           
 class CalculateTaxArgImp
           
 class CalculateTaxCommand
           
 class CalculateTaxService
           
 

Uses of Type in com.ail.insurance.quotation.enforcecompliance
 

Subclasses of Type in com.ail.insurance.quotation.enforcecompliance
 class EnforceComplianceArgImp
           
 class EnforceComplianceCommand
           
 class EnforceComplianceService
           
 class EnforcePolicyComplianceArgImp
           
 class EnforcePolicyComplianceCommand
           
 

Uses of Type in com.ail.insurance.quotation.fetchdocument
 

Subclasses of Type in com.ail.insurance.quotation.fetchdocument
 class FetchDocumentArgImp
          This class represents the value object arguments and returns used/generated by the MakeARecovery entry point.
 class FetchDocumentCommand
           
 

Uses of Type in com.ail.insurance.quotation.generatedocument
 

Subclasses of Type in com.ail.insurance.quotation.generatedocument
 class GenerateDocumentArgImp
          This class represents the value object arguments and returns used/generated by the MakeARecovery entry point.
 class GenerateDocumentCommand
           
 class GenerateDocumentService
          Service to generate a quotation document.
 

Uses of Type in com.ail.insurance.quotation.notifyparty
 

Subclasses of Type in com.ail.insurance.quotation.notifyparty
 class NotifyPartyArgImp
           
 class NotifyPartyCommand
           
 

Uses of Type in com.ail.insurance.quotation.refreshassessmentsheets
 

Subclasses of Type in com.ail.insurance.quotation.refreshassessmentsheets
 class RefreshAssessmentSheetsArgImp
           
 class RefreshAssessmentSheetsCommand
           
 class RefreshAssessmentSheetsService
           
 

Uses of Type in com.ail.insurance.subrogation.makearecovery
 

Subclasses of Type in com.ail.insurance.subrogation.makearecovery
 class MakeARecoveryArgImp
          This class represents the value object arguments and returns used/generated by the MakeARecovery entry point.
 class MakeARecoveryCommand
           
 class MakeARecoveryService
           
 

Uses of Type in com.ail.util
 

Subclasses of Type in com.ail.util
 class DateOfBirth
           
 class Percent
          Deprecated. Use com.ail.util.Rate instead.
 class Rate
          This class represents fractions or rates - with some special handling for common fractions like percentages and permils.