私はJava Beanクラスに言う
class LineInfoBean{
//Methods
method a() //Appears in the wsdl definition
....
....
method b()//Appears in the wsdl definition -> I want to hide it from appearing in the wsdl
}
メソッド b を wsdl 定義に表示されないようにする方法はありますか。メソッドで注釈を使用しようとし@WebMethod(exclude=true)
ましたが、機能しません。このメソッドを非表示にする方法はありますか?