Return-Path: Delivered-To: apmail-xml-axis-dev-archive@xml.apache.org Received: (qmail 56358 invoked by uid 500); 29 Jul 2002 15:38:10 -0000 Mailing-List: contact axis-dev-help@xml.apache.org; run by ezmlm Precedence: bulk Reply-To: axis-dev@xml.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list axis-dev@xml.apache.org Received: (qmail 56347 invoked by uid 500); 29 Jul 2002 15:38:10 -0000 Delivered-To: apmail-xml-axis-cvs@apache.org Date: 29 Jul 2002 15:38:09 -0000 Message-ID: <20020729153809.76526.qmail@icarus.apache.org> From: tomj@apache.org To: xml-axis-cvs@apache.org Subject: cvs commit: xml-axis/java/src/org/apache/axis/providers/java EJBProvider.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N tomj 2002/07/29 08:38:09 Modified: java/src/org/apache/axis/wsdl/fromJava Types.java java/src/org/apache/axis/providers/java EJBProvider.java Log: Relax protection level on a few variables and functions as requested by Frederick N. Brier [fbrier@multideck.com]. Revision Changes Path 1.50 +1 -1 xml-axis/java/src/org/apache/axis/wsdl/fromJava/Types.java Index: Types.java =================================================================== RCS file: /home/cvs/xml-axis/java/src/org/apache/axis/wsdl/fromJava/Types.java,v retrieving revision 1.49 retrieving revision 1.50 diff -u -r1.49 -r1.50 --- Types.java 29 Jul 2002 15:02:32 -0000 1.49 +++ Types.java 29 Jul 2002 15:38:09 -0000 1.50 @@ -314,7 +314,7 @@ * @param javaType input javaType Class * @return QName */ - private QName getTypeQName(Class javaType) { + public QName getTypeQName(Class javaType) { QName qName = null; // Use the typeMapping information to lookup the qName. 1.27 +2 -2 xml-axis/java/src/org/apache/axis/providers/java/EJBProvider.java Index: EJBProvider.java =================================================================== RCS file: /home/cvs/xml-axis/java/src/org/apache/axis/providers/java/EJBProvider.java,v retrieving revision 1.26 retrieving revision 1.27 diff -u -r1.26 -r1.27 --- EJBProvider.java 24 Jul 2002 18:01:05 -0000 1.26 +++ EJBProvider.java 29 Jul 2002 15:38:09 -0000 1.27 @@ -99,8 +99,8 @@ public static final String jndiUsername = "jndiUser"; public static final String jndiPassword = "jndiPassword"; - private static final Class[] empty_class_array = new Class[0]; - private static final Object[] empty_object_array = new Object[0]; + protected static final Class[] empty_class_array = new Class[0]; + protected static final Object[] empty_object_array = new Object[0]; private static InitialContext cached_context = null;