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()
           
 

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 IBCGateway.alterEnrolment(Payment payment, UserEnrolment newForm)
           
 void PaymentGateway.alterEnrolment(Payment payment, UserEnrolment newForm)
           
static Payment Payment.getLastPaymentFor(UserEnrolment userEnrolment)
          Find the last/latest payment made on a specific enrolment
 

Constructors in org.starhope.appius.mb with parameters of type UserEnrolment
Payment(UserEnrolment subscription)
           
 

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> User.getUserEnrolments()
           
 

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