Examples of AppUser


Examples of nz.org.winters.appspot.acrareporter.store.AppUser

        response.getWriter().println("FAIL NO FUNCTION");
        log.severe("no function");
        return;
      }

      AppUser appUser = ObjectifyService.ofy().load().type(AppUser.class).filter("AndroidKey", apiKey).first().now();
      if (appUser == null)
      {
        response.getWriter().println("FAIL UNKNOWN API KEY: " + apiKey);
        log.severe("unknown apikey: " + apiKey);
        return;
View Full Code Here

Examples of nz.org.winters.appspot.acrareporter.store.AppUser

      {
        resp.getWriter().println("ERROR: no user");
        return;
      }

      AppUser user = ObjectifyService.ofy().load().type(AppUser.class).filter("EMailAddress", useremail).first().now();
      if (user == null)
      {
        resp.getWriter().println("ERROR: User invalid");
        return;
      }
View Full Code Here

Examples of nz.org.winters.appspot.acrareporter.store.AppUser

    {
      Window.alert(constants.signupAleryAuthPassword());
      return;
    }

    AppUser appUserShared = new AppUser();
   
    appUserShared.EMailAddress = textEMailAddress.getText();
    appUserShared.FirstName = textFirstName.getText();
    appUserShared.LastName = textLastName.getText();
    appUserShared.City = textCity.getText();
View Full Code Here

Examples of org.mifosplatform.useradministration.domain.AppUser

    @Override
    public DepositAccountData retrieveTemplate(final DepositAccountType depositAccountType, final Long clientId, final Long groupId,
            final Long productId, final boolean staffInSelectedOfficeOnly) {

        final AppUser loggedInUser = this.context.authenticatedUser();
        Long officeId = loggedInUser.getOffice().getId();

        ClientData client = null;
        Collection<SavingsAccountData> savingsAccountDatas = null;
        if (clientId != null) {
            client = this.clientReadPlatformService.retrieveOne(clientId);
View Full Code Here

Examples of org.mifosplatform.useradministration.domain.AppUser

    @Override
    public Long rejectEntry(final Long makerCheckerId) {
        final CommandSource commandSourceInput = validateMakerCheckerTransaction(makerCheckerId);
        validateIsUpdateAllowed();
        final AppUser maker = this.context.authenticatedUser();
        commandSourceInput.markAsRejected(maker, DateTime.now());
        this.commandSourceRepository.save(commandSourceInput);
        return makerCheckerId ;
    }
View Full Code Here

Examples of org.mifosplatform.useradministration.domain.AppUser

    @Transactional
    @Override
    public CommandProcessingResult activateFDAccount(final Long savingsId, final JsonCommand command) {

        final AppUser user = this.context.authenticatedUser();
       
        final boolean isSavingsInterestPostingAtCurrentPeriodEnd = this.configurationDomainService
        .isSavingsInterestPostingAtCurrentPeriodEnd();
        final Integer financialYearBeginningMonth = this.configurationDomainService
          .retrieveFinancialYearBeginningMonth();
View Full Code Here

Examples of org.mifosplatform.useradministration.domain.AppUser

    @Transactional
    @Override
    public CommandProcessingResult activateRDAccount(final Long savingsId, final JsonCommand command) {
        boolean isRegularTransaction = false;

        final AppUser user = this.context.authenticatedUser();
       
        final boolean isSavingsInterestPostingAtCurrentPeriodEnd = this.configurationDomainService
        .isSavingsInterestPostingAtCurrentPeriodEnd();
        final Integer financialYearBeginningMonth = this.configurationDomainService
          .retrieveFinancialYearBeginningMonth();
View Full Code Here

Examples of org.mifosplatform.useradministration.domain.AppUser

        }
    }

    @Override
    public CommandProcessingResult closeFDAccount(final Long savingsId, final JsonCommand command) {
        final AppUser user = this.context.authenticatedUser();
        final boolean isPreMatureClose = false;
        this.depositAccountTransactionDataValidator.validateClosing(command, DepositAccountType.FIXED_DEPOSIT, isPreMatureClose);

        final Map<String, Object> changes = new LinkedHashMap<>();
        final PaymentDetail paymentDetail = this.paymentDetailWritePlatformService.createAndPersistPaymentDetail(command, changes);
View Full Code Here

Examples of org.mifosplatform.useradministration.domain.AppUser

    }

    @Override
    public CommandProcessingResult closeRDAccount(final Long savingsId, final JsonCommand command) {
        final AppUser user = this.context.authenticatedUser();

        this.depositAccountTransactionDataValidator.validateClosing(command, DepositAccountType.RECURRING_DEPOSIT, false);

        final Map<String, Object> changes = new LinkedHashMap<>();
        final PaymentDetail paymentDetail = this.paymentDetailWritePlatformService.createAndPersistPaymentDetail(command, changes);
View Full Code Here

Examples of org.mifosplatform.useradministration.domain.AppUser

    }

    @Override
    public CommandProcessingResult prematureCloseFDAccount(final Long savingsId, final JsonCommand command) {
        final AppUser user = this.context.authenticatedUser();

        this.depositAccountTransactionDataValidator.validateClosing(command, DepositAccountType.FIXED_DEPOSIT, true);

        final Map<String, Object> changes = new LinkedHashMap<>();
        final PaymentDetail paymentDetail = this.paymentDetailWritePlatformService.createAndPersistPaymentDetail(command, changes);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.