Uses of Class
org.starhope.appius.mb.UserEnrolment

Packages that use UserEnrolment
org.starhope.appius.mb   
org.starhope.appius.pay   
org.starhope.appius.pay.util   
org.starhope.appius.user   
 

Uses of UserEnrolment in org.starhope.appius.mb
 

Fields in org.starhope.appius.mb declared as UserEnrolment
private  UserEnrolment Payment.userEnrolment
          If this payment was made for an enrolment subscription (right now (TODO) they all are), then this stores the pointer to the UserEnrolment record in question.
 

Methods in org.starhope.appius.mb that return UserEnrolment
static UserEnrolment UserEnrolment.getBySourceAndCode(String orderSource, String orderCode)
          Retrieve a User Enrolment based off the invoice number split into orderSource and orderCode.
static UserEnrolment[] UserEnrolment.getLastTwoYearsForUserID(int userID)
          Get all enrolments for a given user in the past two years from today's date.
 UserEnrolment Payment.getUserEnrolment()
           
 UserEnrolment UserEnrolmentSQLLoader.loadRecord(int id)
           
 UserEnrolment UserEnrolmentSQLLoader.loadRecord(String orderNumber)
           
private  UserEnrolment UserEnrolmentSQLLoader.reload(UserEnrolment rec, ResultSet rs)
          WRITEME: Document this method brpocock@star-hope.org
 UserEnrolment UserEnrolmentSQLLoader.set(ResultSet rs)
          WRITEME: Document this method brpocock@star-hope.org
 

Methods in org.starhope.appius.mb that return types with arguments of type UserEnrolment
static Collection<UserEnrolment> UserEnrolment.getAllForUserID(int userID)
           
 

Methods in org.starhope.appius.mb with parameters of type UserEnrolment
static Payment Payment.addPaymentToSequence(UserEnrolment userEnrolment)
          Adds a new payment to the sequence for a User Enrolment.
 void PaymentGateway.alterEnrolment(Payment payment, UserEnrolment newForm)
           
 void UserEnrolmentSQLLoader.changed(UserEnrolment changedRecord)
           
static Payment Payment.getLastPaymentFor(UserEnrolment userEnrolment)
          Find the last/latest payment made on a specific enrolment
 void UserEnrolmentSQLLoader.refresh(UserEnrolment record)
           
private  UserEnrolment UserEnrolmentSQLLoader.reload(UserEnrolment rec, ResultSet rs)
          WRITEME: Document this method brpocock@star-hope.org
 void UserEnrolmentSQLLoader.removeRecord(UserEnrolment record)
           
 void UserEnrolmentSQLLoader.saveRecord(UserEnrolment record)
           
 

Constructors in org.starhope.appius.mb with parameters of type UserEnrolment
Payment(UserEnrolment subscription)
          Create a new payment upon a given UserEnrolment
 

Uses of UserEnrolment in org.starhope.appius.pay
 

Methods in org.starhope.appius.pay with parameters of type UserEnrolment
 void PayPalGateway.alterEnrolment(Payment payment, UserEnrolment newForm)
           
 void AuthorizeNetGateway.alterEnrolment(Payment payment, UserEnrolment newForm)
           
 

Uses of UserEnrolment in org.starhope.appius.pay.util
 

Methods in org.starhope.appius.pay.util with parameters of type UserEnrolment
 void PaymentGatewayReal.alterEnrolment(Payment payment, UserEnrolment newForm)
           
 

Uses of UserEnrolment in org.starhope.appius.user
 

Methods in org.starhope.appius.user that return UserEnrolment
 UserEnrolment[] User.getUserEnrolmentsAsArray()
           
 

Methods in org.starhope.appius.user that return types with arguments of type UserEnrolment
 Collection<UserEnrolment> UserRecord.getEnrolments()
          get all enrolments in which this user is enrolled.
 Collection<UserEnrolment> User.getUserEnrolments()
           
 

Methods in org.starhope.appius.user with parameters of type UserEnrolment
 void User.startEnrolment(UserEnrolment userEnrolment)