FileDocCategorySizeDatePackage
ApplicationApprover.javaAPI DocExample932Thu Feb 17 20:01:06 GMT 2000RelMgmt.PersonRole

ApplicationApprover.java

/*----------------------------------------------------------------------------
Copyright (c)2000 TogetherSoft LLC. Patents pending. All rights reserved.
----------------------------------------------------------------------------*/

package RelMgmt.PersonRole;

import java.util.Vector;
import java.math.BigDecimal;
import CustomerAccountMgmt.CustomerAccountApp.CustomerAccApplication;

/** @stereotype role */
public class ApplicationApprover extends RelMgmt.Party.PersonRole {
    public BigDecimal calcAcceptanceRate() {
        return new BigDecimal(0);
    }

    /**  */
    public Vector assessQualityOfResultingAccounts() {
        return new Vector();
    }

    public Vector listApplications() {
        return new Vector();
    }

    /**
     * @supplierCardinality 0..*
     * @clientCardinality 1
     */
    private CustomerAccApplication lnkUnnamed;
    private int approverLevel;
}