Examples of Passport


Examples of aim.domain.agent.Passport

        final PolicySeries serie1 = new PolicySeries("DOM");
        policiesType.getTypeSeries().add(serie1);
        serie1.setPolicyType(policiesType);
        entityManager.persist(policiesType);

        final Passport agentId = new Passport("АВ", "468454");
        final Account agent = new Account(new Employee(agentId, "Иванов", "Иван"));
        final Set<UserRoles> firstAgentUserRoles = new TreeSet<UserRoles>();
        firstAgentUserRoles.add(UserRoles.ROLE_AGENT);
        agent.setAssociatedRoles(firstAgentUserRoles);
        userDAO.persist(agent);
View Full Code Here

Examples of aim.domain.agent.Passport

        //TODO assert
    }

    @Test
    public void testCheckExistanceOfEmptyPolicies() {
        final Passport agentId = new Passport("АВ", "468454");
        final Account agent = new Account(new Employee(agentId, "Иванов", "Иван"));
        final Set<UserRoles> firstAgentUserRoles = new TreeSet<UserRoles>();
        firstAgentUserRoles.add(UserRoles.ROLE_AGENT);
        agent.setAssociatedRoles(firstAgentUserRoles);
        userDAO.persist(agent);
View Full Code Here

Examples of aim.domain.agent.Passport

    /**
     * Provides search agent by his passport data
     */
    public void setAgent() {
        if (agentPassportNumber != null && !agentPassportNumber.isEmpty()) {
            agentPassport = new Passport(agentPassportSerie, agentPassportNumber);
            final Account employer = userService.getAccountByPassport(agentPassport);
            agentFLP = employer.getEmployee().toString();
            agentToDisplay = new EmployeeDTO(employer.getEmployee(), employer.getAccount().getUsername(), employer.getAssociatedRoles());
        }
        showPolicies();
View Full Code Here

Examples of aim.domain.agent.Passport

        assertEquals(policyCount, blankPolicies.size());
    }

    @Test
    public void testExistingEmptyBlankPolicyCount() {
        final Passport agentId = new Passport("АВ", "468454");
        final Employee employee = new Employee(agentId, "Иванов", "Иван");
        final Account agent = new Account(employee);
        final Set<UserRoles> firstAgentUserRoles = new TreeSet<UserRoles>();
        firstAgentUserRoles.add(UserRoles.ROLE_AGENT);
        agent.setAssociatedRoles(firstAgentUserRoles);
View Full Code Here

Examples of aim.domain.agent.Passport

        for (long i = beginNumber; i <= endNumber; i++) {
            final BlankPolicy blankPolicy = new BlankPolicy(new PolicyId(policySeries, i));
            blankPolicyDAO.persistPolicy(blankPolicy);
        }

        final Employee firstEmployee = new Employee(new Passport("АВ", "468454"), "Иванов", "Иван");
        final Account firstAgent = new Account(firstEmployee);
        final Set<UserRoles> firstAgentUserRoles = new TreeSet<UserRoles>();
        firstAgentUserRoles.add(UserRoles.ROLE_AGENT);
        firstAgent.setAssociatedRoles(firstAgentUserRoles);
        userDAO.persist(firstAgent);

        final Employee secondEmployee = new Employee(new Passport("АУ", "468454"), "Иванов", "Иван");
        final Account secondAgent = new Account(secondEmployee);
        final Set<UserRoles> secondAgentUserRoles = new TreeSet<UserRoles>();
        secondAgentUserRoles.add(UserRoles.ROLE_AGENT);
        secondAgent.setAssociatedRoles(secondAgentUserRoles);
        userDAO.persist(secondAgent);
View Full Code Here

Examples of aim.domain.agent.Passport

            final BlankPolicy blankPolicy = new BlankPolicy(new PolicyId(policySeries, i));
            blankPolicyDAO.persistPolicy(blankPolicy);
        }


        final Passport agentId = new Passport("АВ", "468454");
        final Employee employee = new Employee(agentId, "Иванов", "Иван");
        final Account agent = new Account(employee);
        final Set<UserRoles> firstAgentUserRoles = new TreeSet<UserRoles>();
        firstAgentUserRoles.add(UserRoles.ROLE_AGENT);
        agent.setAssociatedRoles(firstAgentUserRoles);
View Full Code Here

Examples of aim.domain.agent.Passport

            final BlankPolicy blankPolicy = new BlankPolicy(new PolicyId(policySeries, i));
            blankPolicyDAO.persistPolicy(blankPolicy);
        }

        /* Create Agent */
        final Passport agentId = new Passport("АВ", "884495");
        final Employee employee = new Employee(agentId, "Иванов", "Иван");
        final Account agent = new Account(employee);
        final Set<UserRoles> firstAgentUserRoles = new TreeSet<UserRoles>();
        firstAgentUserRoles.add(UserRoles.ROLE_AGENT);
        agent.setAssociatedRoles(firstAgentUserRoles);
View Full Code Here

Examples of aim.domain.agent.Passport

        return null;
    }
   
    public String getAgentFLP() {
        if (!(agentPassportNumber == null || agentPassportNumber.isEmpty())) {
            final Account employer = userService.getAccountByPassport(new Passport(agentPassportSerie, agentPassportNumber));
            agentFLP = employer.getEmployee().toString();
            agentToDisplay = new EmployeeDTO(employer.getEmployee(), employer.getAccount().getUsername(), employer.getAssociatedRoles());
        }
        return agentFLP;
    }
View Full Code Here

Examples of aim.domain.agent.Passport

    /**
     * Provides setup of agent
     */
    public void setAgent() {
        if (agentPassportNumber != null && !agentPassportNumber.isEmpty()) {
            agentPassport = new Passport(agentPassportSerie, agentPassportNumber);
            final Account employer = userService.getAccountByPassport(agentPassport);
            agentFLP = employer.getEmployee().toString();
            agentToDisplay = new EmployeeDTO(employer.getEmployee(), employer.getAccount().getUsername(), employer.getAssociatedRoles());

            showStatistic();
View Full Code Here

Examples of aim.domain.agent.Passport

    private UserDAO userDAO;

    @Test
    public void testGetEmployeesByOffice() {
        final int agentFromKievCount = 1;
        final Passport firstAgentId = new Passport("АВ", "468454");
        final Account firstAgent = new Account(new Employee(firstAgentId, "Иванов", "Иван"));
        final Set<UserRoles> firstAgentUserRoles = new TreeSet<UserRoles>();
        firstAgentUserRoles.add(UserRoles.ROLE_AGENT);
        firstAgent.setAssociatedRoles(firstAgentUserRoles);
        userDAO.persist(firstAgent);
        final Office office = new Office("Kiev");
        userDAO.persist(office);
        firstAgent.getEmployee().setOffice(office);

        final Passport secondAgentId = new Passport("АУ", "468454");
        final Account secondAgent = new Account(new Employee(secondAgentId, "Иванов", "Иван"));
        final List<UserRoles> secondAgentUserRoles = new ArrayList<UserRoles>();
        secondAgentUserRoles.add(UserRoles.ROLE_AGENT);
        secondAgent.setAssociatedRoles(firstAgentUserRoles);
        userDAO.persist(secondAgent);
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.