package com.pipe.webservice;

import com.pipe.bean.User;


public class PipeService {
	/**
	 * in/out String
	 * @param name
	 * @return
	 */
	public String sayHello(String name) {
		return name + " say: hello";
	}
		
	/**
	 * in/out javabean
	 * @return
	 */
	public User getUser(String userName) {
		User user = new User();
		user.setName(userName);		


return user; } }

相关文章:

  • 2022-12-23
  • 2021-06-11
  • 2021-12-20
  • 2022-12-23
  • 2021-08-15
  • 2021-12-24
  • 2021-11-26
猜你喜欢
  • 2021-09-14
  • 2021-05-08
  • 2021-11-12
  • 2022-01-19
  • 2022-01-03
相关资源
相似解决方案