Adjust sample project method calls that should be accessed in a static manner.
------------------------------------------------------------------------------
Key: CXF-3686
URL: https://issues.apache.org/jira/browse/CXF-3686
Project: CXF
Issue Type: Improvement
Components: Samples
Affects Versions: 2.4.1
Reporter: Robert Liguori
Priority: Trivial
The repeated sample projects usage of this statement:
--> bf.setDefaultBus(bus);
causes the following warnings to be raised:
"The static method setDefaultBus(Bus) from the type BusFactory should be
accessed in a static way."
Note that the sample projects ws_rm and jax_rs_basic_https do access the method
is a static way:
--> BusFactory.setDefaultBus(bus);
The adjustment from "bf.setDefaultBus(bus);" to
"BusFactory.setDefaultBus(bus);" should be made for the following sample
projects: ws_policy, wsdl_first_https and wssec_sign_enc.
I'm working on the diffs for these now and will attach them to this JIRA issue
later tonight.
Note that this activity is part of the effort to resolve warnings as identified
by IDEs.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira