Uses of Class
com.ail.insurance.policy.Asset

Packages that use Asset
com.ail.insurance.policy   
 

Uses of Asset in com.ail.insurance.policy
 

Methods in com.ail.insurance.policy that return Asset
 Asset Policy.getAsset(int i)
          Get the instance of asset at a specific index from the collection of Asset objects associated with this instance.
 Asset Policy.getAssetById(java.lang.String id)
          Fetch a reference to an asset by its ID.
 

Methods in com.ail.insurance.policy that return types with arguments of type Asset
 java.util.List<Asset> Policy.getAsset()
          Fetch the collection of asset objects associated with this instance.
 java.util.List<Asset> Policy.getAssetBySectionId(java.lang.String sectionId)
          Fetch a collection of the assets associated with a specific section.
 java.util.List<Asset> Policy.getAssetByTypeId(java.lang.String typeId)
          Fetch a collection of reference to assets of a specific type in this policy.
 java.util.List<Asset> Policy.getInsuredAssetBySectionId(java.lang.String sectionId)
          Fetch a collection of the assets associated with a specific section.
 java.util.List<Asset> Policy.getUninsuredAssetBySectionId(java.lang.String sectionId)
          Fetch a collection of the assets associated with a specific section.
 

Methods in com.ail.insurance.policy with parameters of type Asset
 void Policy.addAsset(Asset asset)
          Add a asset to the collection associated with this object.
 void Policy.removeAsset(Asset asset)
          Remove a specific instance of Asset from the collection associated with this object.
 

Method parameters in com.ail.insurance.policy with type arguments of type Asset
 void Policy.setAsset(java.util.List<Asset> asset)
          Set the collection of instances of Asset associated with this object.