Examples of ApiEcho


Examples of com.cloudera.api.model.ApiEcho

* Time: 3:59 PM
*/
public class FakeToolsResource implements ToolsResource {
   @Override
   public ApiEcho echo(@DefaultValue("Hello, World!") String s) {
      ApiEcho echo = new ApiEcho();
      echo.setMessage(s);
      return echo;
   }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.