Create coverage cost method implementation for line

Before you begin

Declare coverage cost method implementation

Procedure

  1. In Studio, navigate in configuration > gsrc to the gw.lob.line.financials package.
    For Golf Cart, navigate to gw.lob.go.financials.
  2. Right-click the financials node, and then select New > Gosu Class. In the New Gosu Class dialog box, enter the name of the interface.
    For Golf Cart, enter GOCovCostMethodsImpl.
  3. In the new Gosu class, write a constructor for the coverage cost method.
    For example, Golf Cart code for the coverage cost method constructor, gw.lob.go.GOCovCostMethodsImpl:
      package gw.lob.go.financials
       
      class GOCovCostMethodsImpl extends GenericGOCostMethodsImpl<GOCovCost> {
       
      construct(owner : GOCovCost) {
          super( owner )
        }
    ...
      }
  4. Override property values as necessary.
  5. At this point, you can verify your work. For instructions, see Verify your work.