innerclass snippet


/ Published in: Java
Save to your folder(s)



Copy this code and paste it in your HTML
  1. public with sharing class MSG_Stage {
  2.  
  3. //Loan Stages
  4. public static String Loan_ApplicationComplete {get; private set;}
  5. public static String Loan_Closed {get; private set;}
  6. public static String Loan_Underwriting {get; private set;}
  7. public static String Loan_Complete {get; private set;}
  8. //Deposit Stages
  9. //...
  10.  
  11. public MSG_Stage() {
  12.  
  13. }
  14.  
  15. public class Loan {
  16. public Loan() {
  17. String MSC = MSG_LoanStageConf__c.getInstance('MSG Stage Config').Profile__c;
  18. MSG_LoanStageProfile__c MSP = MSG_LoanStageProfile__c.getInstance(MSC);
  19.  
  20. Loan_ApplicationComplete = MSP.ApplicationComplete__c;
  21. Loan_Closed = MSP.Loan_Closed__c;
  22. Loan_Underwriting = MSP.Loan_Underwriting__c;
  23. Loan_Complete = MSP.Loan_Complete__c;
  24. }
  25. }
  26.  
  27. public class Deposit {
  28.  
  29. }
  30.  
  31. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.