Uses of Class
org.kuali.kfs.pdp.businessobject.CustomerProfile

Packages that use CustomerProfile
org.kuali.kfs.pdp.batch.service.impl   
org.kuali.kfs.pdp.businessobject   
org.kuali.kfs.pdp.dataaccess   
org.kuali.kfs.pdp.dataaccess.impl   
org.kuali.kfs.pdp.document.validation.impl   
org.kuali.kfs.pdp.service   
org.kuali.kfs.pdp.service.impl   
org.kuali.kfs.pdp.web.struts   
org.kuali.kfs.sys.identity   
 

Uses of CustomerProfile in org.kuali.kfs.pdp.batch.service.impl
 

Methods in org.kuali.kfs.pdp.batch.service.impl with parameters of type CustomerProfile
protected  void ExtractPaymentServiceImpl.writeCustomerProfile(BufferedWriter os, int indent, CustomerProfile cp)
           
 

Uses of CustomerProfile in org.kuali.kfs.pdp.businessobject
 

Methods in org.kuali.kfs.pdp.businessobject that return CustomerProfile
 CustomerProfile FormatResult.getCust()
           
 CustomerProfile ProcessSummary.getCustomer()
           
 CustomerProfile PaymentFileLoad.getCustomer()
          Gets the customer attribute.
 CustomerProfile Batch.getCustomerProfile()
           
 CustomerProfile CustomerBank.getCustomerProfile()
          Gets the customerProfile attribute.
 

Methods in org.kuali.kfs.pdp.businessobject with parameters of type CustomerProfile
 void FormatResult.setCust(CustomerProfile cust)
           
 void ProcessSummary.setCustomer(CustomerProfile customer)
           
 void PaymentFileLoad.setCustomer(CustomerProfile customer)
          Sets the customer attribute value.
 void Batch.setCustomerProfile(CustomerProfile cp)
           
 void CustomerBank.setCustomerProfile(CustomerProfile customerProfile)
          Sets the customerProfile attribute value.
 

Constructors in org.kuali.kfs.pdp.businessobject with parameters of type CustomerProfile
FormatResult(Integer p, CustomerProfile c)
           
 

Uses of CustomerProfile in org.kuali.kfs.pdp.dataaccess
 

Methods in org.kuali.kfs.pdp.dataaccess with parameters of type CustomerProfile
 boolean PaymentFileLoadDao.isDuplicateBatch(CustomerProfile customer, Integer count, BigDecimal totalAmount, Timestamp createDate)
          Checks whether a Batch record already exists for the given key.
 

Uses of CustomerProfile in org.kuali.kfs.pdp.dataaccess.impl
 

Methods in org.kuali.kfs.pdp.dataaccess.impl with parameters of type CustomerProfile
 boolean PaymentFileLoadDaoOjb.isDuplicateBatch(CustomerProfile customer, Integer count, BigDecimal totalAmount, Timestamp now)
           
 

Uses of CustomerProfile in org.kuali.kfs.pdp.document.validation.impl
 

Methods in org.kuali.kfs.pdp.document.validation.impl with parameters of type CustomerProfile
protected  boolean CustomerProfileRule.verifyChartUnitSubUnitIsUnique(CustomerProfile customerProfile)
          Verifies that the chart/unit/sub-unit combination on this customer profile is unique
 

Uses of CustomerProfile in org.kuali.kfs.pdp.service
 

Methods in org.kuali.kfs.pdp.service that return CustomerProfile
 CustomerProfile CustomerProfileService.get(String chartCode, String unitCode, String subUnitCode)
           
 

Methods in org.kuali.kfs.pdp.service that return types with arguments of type CustomerProfile
 List<CustomerProfile> FormatService.getAllCustomerProfiles()
          This method gets all customer profiles
 

Methods in org.kuali.kfs.pdp.service with parameters of type CustomerProfile
 void PdpEmailService.sendAchAdviceEmail(PaymentGroup paymentGroup, PaymentDetail paymentDetail, CustomerProfile customer)
          Sends advice notification email to the payee receiving an ACH payment
 

Method parameters in org.kuali.kfs.pdp.service with type arguments of type CustomerProfile
 FormatProcessSummary FormatService.startFormatProcess(org.kuali.rice.kim.bo.Person user, String campus, List<CustomerProfile> customers, Date paydate, String paymentTypes)
          This method marks the process log so a format only happens once per campus.
 

Uses of CustomerProfile in org.kuali.kfs.pdp.service.impl
 

Methods in org.kuali.kfs.pdp.service.impl that return CustomerProfile
 CustomerProfile CustomerProfileServiceImpl.get(String chartCode, String unitCode, String subUnitCode)
           
 

Methods in org.kuali.kfs.pdp.service.impl that return types with arguments of type CustomerProfile
 List<CustomerProfile> FormatServiceImpl.getAllCustomerProfiles()
           
 

Methods in org.kuali.kfs.pdp.service.impl with parameters of type CustomerProfile
protected  void PaymentFileValidationServiceImpl.checkForTaxEmailRequired(PaymentFileLoad paymentFile, PaymentGroup paymentGroup, CustomerProfile customer)
          Checks whether payment status should be set to held and a tax email sent indicating so
protected  void PaymentFileValidationServiceImpl.processAccountSoftEdits(PaymentFileLoad paymentFile, CustomerProfile customer, PaymentAccountDetail paymentAccountDetail, List<String> warnings)
          Set default fields on account line and perform account field existence checks
protected  void PaymentFileValidationServiceImpl.processDetailSoftEdits(PaymentFileLoad paymentFile, CustomerProfile customer, PaymentDetail paymentDetail, List<String> warnings)
          Set default fields on detail line and check amount against customer threshold.
 void PaymentFileValidationServiceImpl.processGroupSoftEdits(PaymentFileLoad paymentFile, CustomerProfile customer, List<String> warnings)
          Set defaults for group fields and do tax checks.
protected  void PaymentFileValidationServiceImpl.replaceAccountingString(org.kuali.rice.kns.bo.KualiCodeBase objChangeCd, List<PaymentAccountHistory> changeRecords, CustomerProfile customer, PaymentAccountDetail paymentAccountDetail)
          Replaces the entire accounting string with defaults from the customer profile.
 void PdpEmailServiceImpl.sendAchAdviceEmail(PaymentGroup paymentGroup, PaymentDetail paymentDetail, CustomerProfile customer)
           
protected  void PdpEmailServiceImpl.sendThresholdEmail(boolean fileThreshold, PaymentFileLoad paymentFile, CustomerProfile customer)
          Sends email for a payment that was over the customer file threshold or the detail threshold
protected  boolean FormatServiceImpl.validateAndUpdatePaymentGroupBankCode(PaymentGroup paymentGroup, DisbursementType disbursementType, CustomerProfile customer)
          Verifies a valid bank is set on the payment group.
 

Method parameters in org.kuali.kfs.pdp.service.impl with type arguments of type CustomerProfile
 FormatProcessSummary FormatServiceImpl.startFormatProcess(org.kuali.rice.kim.bo.Person user, String campus, List<CustomerProfile> customers, Date paydate, String paymentTypes)
           
 

Uses of CustomerProfile in org.kuali.kfs.pdp.web.struts
 

Methods in org.kuali.kfs.pdp.web.struts that return CustomerProfile
 CustomerProfile FormatForm.getCustomer(int index)
          This method retrieves a specific customer profile from the list, by index
 

Methods in org.kuali.kfs.pdp.web.struts that return types with arguments of type CustomerProfile
 List<CustomerProfile> FormatForm.getCustomers()
          This method gets customers
 

Methods in org.kuali.kfs.pdp.web.struts with parameters of type CustomerProfile
 void FormatForm.setCustomer(int key, CustomerProfile value)
          This method sets a customer profile.
 

Method parameters in org.kuali.kfs.pdp.web.struts with type arguments of type CustomerProfile
 void FormatForm.setCustomers(List<CustomerProfile> customers)
          This method sets customers
 

Uses of CustomerProfile in org.kuali.kfs.sys.identity
 

Fields in org.kuali.kfs.sys.identity declared as CustomerProfile
protected  CustomerProfile KfsKimAttributes.customerProfile
           
 

Methods in org.kuali.kfs.sys.identity that return CustomerProfile
 CustomerProfile KfsKimAttributes.getCustomerProfile()
           
 

Methods in org.kuali.kfs.sys.identity with parameters of type CustomerProfile
 void KfsKimAttributes.setCustomerProfile(CustomerProfile customerProfile)
           
 



Copyright © 2005-2012 The Kuali Foundation. All Rights Reserved.