Package nl.amis.rest.hr.model.services

Examples of nl.amis.rest.hr.model.services.HR


public class HRClient {
    public static void main(String[] args) {
        try {
            final Context context = getInitialContext();
            HR hR = (HR)context.lookup("HRRestServices-HRBean#nl.amis.rest.hr.model.services.HR");

            for (Departments departments : (List<Departments>)hR.getDepartmentsFindAll()) {
                printDepartments(departments);
            }
        } catch (CommunicationException ex) {
            System.out.println(ex.getClass().getName());
            System.out.println(ex.getRootCause().getLocalizedMessage());
View Full Code Here

TOP

Related Classes of nl.amis.rest.hr.model.services.HR

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.