Package org.openengsb.domain.example.model

Examples of org.openengsb.domain.example.model.ExampleResponseModel


        String name = (model == null) ? null : model.getName();
        LOGGER.info("received model with the id \"{}\" and name \"{}\"", id, name);
        if (model == null) {
            return null;
        }
        ExampleResponseModel response = new ExampleResponseModel();
        response.setResult(model.getName());
        return response;
    }
View Full Code Here

TOP

Related Classes of org.openengsb.domain.example.model.ExampleResponseModel

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.