Package org.libreplan.ws.resources.api

Examples of org.libreplan.ws.resources.api.ResourceDTO


        }

    }

    public static ResourceDTO toDTO(Resource resource) {
        ResourceDTO resourceDTO;
        if (resource instanceof Worker) {
            resourceDTO = toDTO((Worker) resource);
        } else if (resource instanceof Machine) {
            resourceDTO = toDTO((Machine) resource);
        } else {
View Full Code Here

TOP

Related Classes of org.libreplan.ws.resources.api.ResourceDTO

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.