Package aim.domain.security

Examples of aim.domain.security.Employee


     * Must follow after 'addToAgent' method
     *
     * @return
     */
    public String issue() {
        Employee agent = agentService.getAgentByID(agentPassportSerie, agentPassportNumber);

        for (Policy p : policies) {
            policyService.issuePolicyToAgent(p.getSelectedPolicySerie(), p.getFrom(), p.getTo(), agent);
        }

View Full Code Here


    @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

        serie32.setPolicyType(policyType3);
        serie33.setPolicyType(policyType3);
        entityManager.persist(policyType3);


        final Account admin = new Account(new Employee(new Passport("АВ", "468454"), "Иванов", "Иван"));
        final User aimSecurityAdimn = new User("admin", "a4a88c0872bf652bb9ed803ece5fd6e82354838a9bf59ab4babb1dab322154e1");
        Set<UserRoles> userRoles = new TreeSet<UserRoles>();
        userRoles.add(UserRoles.ROLE_USER);
        userRoles.add(UserRoles.ROLE_ADMIN);
        admin.setAssociatedRoles(userRoles);
View Full Code Here

    @Transactional(propagation = Propagation.REQUIRES_NEW, readOnly = false)
    @Override
    public void updateEmployeeFromView(EmployeeDTO employeeDTO) {
        final Account oldEmployee = userDAO.getAccountByPassport(employeeDTO.getUserInfo().getId());
        oldEmployee.setAssociatedRoles(new TreeSet<UserRoles>(employeeDTO.getUserRoles()));
        Employee newEmployeeInfo = employeeDTO.getUserInfo();
        Employee oldEmployeeInfo = oldEmployee.getEmployee();
        oldEmployeeInfo.setFirstName( newEmployeeInfo.getFirstName() );
        oldEmployeeInfo.setLastName( newEmployeeInfo.getLastName() );
        oldEmployeeInfo.setParentName( newEmployeeInfo.getParentName() );
        oldEmployeeInfo.setAddress( newEmployeeInfo.getAddress() );
        oldEmployeeInfo.setEmail( newEmployeeInfo.getEmail() );
        oldEmployeeInfo.setPhoneNumbers( newEmployeeInfo.getPhoneNumbers() );
        oldEmployeeInfo.setAddinfo( newEmployeeInfo.getAddinfo() );
    }
View Full Code Here

    @Test
    public void testGetAllAgents() {
        final int agentCount = 2;

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

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

    }

    @Test
    public void testGetAgentPolicy() {
        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);
        userDAO.persist(agent);
View Full Code Here

    }

    @Test
    public void testGetAgentById() {
        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);

        final Employee foundAgent = agentDAO.getAgentByID(agentId);
        assertEquals(agent.getEmployee().getId().getNumber(), foundAgent.getId().getNumber());
        assertEquals(agent.getEmployee().getId().getSeries(), foundAgent.getId().getSeries());
    }
View Full Code Here

TOP

Related Classes of aim.domain.security.Employee

Copyright © 2018 www.massapicom. 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.