锘??xml version="1.0" encoding="utf-8" standalone="yes"?>久久97超碰国产精品超碰,国产精品区一区二区三含羞草,国产精品一区视频http://www.aygfsteel.com/stevenjohn/category/51102.html閭d簺闈掓槬鐨勫瞾鏈?/description>zh-cnTue, 09 Oct 2012 14:40:31 GMTTue, 09 Oct 2012 14:40:31 GMT60Java transient鍏抽敭瀛?/title>http://www.aygfsteel.com/stevenjohn/archive/2012/10/08/389206.htmlabinabinMon, 08 Oct 2012 13:49:00 GMThttp://www.aygfsteel.com/stevenjohn/archive/2012/10/08/389206.htmlhttp://www.aygfsteel.com/stevenjohn/comments/389206.htmlhttp://www.aygfsteel.com/stevenjohn/archive/2012/10/08/389206.html#Feedback0http://www.aygfsteel.com/stevenjohn/comments/commentRss/389206.htmlhttp://www.aygfsteel.com/stevenjohn/services/trackbacks/389206.htmlpackage com.abin.lee.servlet.important.type;
import java.io.Serializable;
public class LookValue implements Serializable{ /** * */ private static final long serialVersionUID = -7746631577693804188L; private int id; private String name; private transient String status;
public LookValue() { super(); } public LookValue(int id, String name, String status) { super(); this.id = id; this.name = name; this.status = status; } public int getId() { return id; } public void setId(int id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getStatus() { return status; } public void setStatus(String status) { this.status = status; }
public class JdkProxyTest { @Test public void testJdkProxy() { Call call = new ServiceImpl(); ServiceHandler handler = new ServiceHandler(call); Call callProxy = (Call) Proxy.newProxyInstance(call.getClass().getClassLoader(), new Class[]{Call.class}, handler); callProxy.doCall("test"); } }