Repository: cxf Updated Branches: refs/heads/master 5891c0d23 -> 3d1b17589
Minor change:allow child class to access factory Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/3d1b1758 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/3d1b1758 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/3d1b1758 Branch: refs/heads/master Commit: 3d1b1758932f3585083d51dc4eb0fd768ba722f8 Parents: 5891c0d Author: jimma <[email protected]> Authored: Wed Aug 6 13:32:50 2014 +0800 Committer: Jim Ma <[email protected]> Committed: Tue Mar 31 18:16:51 2015 +0800 ---------------------------------------------------------------------- .../main/java/org/apache/cxf/service/invoker/FactoryInvoker.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/3d1b1758/core/src/main/java/org/apache/cxf/service/invoker/FactoryInvoker.java ---------------------------------------------------------------------- diff --git a/core/src/main/java/org/apache/cxf/service/invoker/FactoryInvoker.java b/core/src/main/java/org/apache/cxf/service/invoker/FactoryInvoker.java index d43e302..dec77c8 100644 --- a/core/src/main/java/org/apache/cxf/service/invoker/FactoryInvoker.java +++ b/core/src/main/java/org/apache/cxf/service/invoker/FactoryInvoker.java @@ -33,7 +33,7 @@ import org.apache.cxf.message.Exchange; public class FactoryInvoker extends AbstractInvoker { static final ResourceBundle BUNDLE = BundleUtils.getBundle(FactoryInvoker.class); - private Factory factory; + protected Factory factory; /** * Create a FactoryInvoker object.
