Package halfpipe.example.api

Examples of halfpipe.example.api.Message


    @GET
    @Produces(MediaType.APPLICATION_JSON)
    @ApiOperation(value = "message", notes = "a nice hello", response = Message.class)
     public Message message() {
        logger.info("My Things {}", exampleServiceProps.getMyThings().get());
       return new Message(exampleServiceProps.getDefaultMessage().get());
     }
View Full Code Here

TOP

Related Classes of halfpipe.example.api.Message

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.