You are viewing a plain text version of this content. The canonical link for it is here.
Posted to xindice-dev@xml.apache.org by vg...@apache.org on 2004/06/25 16:28:22 UTC

cvs commit: xml-xindice/java/src/org/apache/xindice/client/xmldb/xmlrpc DatabaseImpl.java

vgritsenko    2004/06/25 07:28:22

  Modified:    java/src/org/apache/xindice/client/xmldb/xmlrpc
                        DatabaseImpl.java
  Log:
  Make constants public
  
  Revision  Changes    Path
  1.24      +10 -10    xml-xindice/java/src/org/apache/xindice/client/xmldb/xmlrpc/DatabaseImpl.java
  
  Index: DatabaseImpl.java
  ===================================================================
  RCS file: /home/cvs/xml-xindice/java/src/org/apache/xindice/client/xmldb/xmlrpc/DatabaseImpl.java,v
  retrieving revision 1.23
  retrieving revision 1.24
  diff -u -r1.23 -r1.24
  --- DatabaseImpl.java	30 Mar 2004 14:01:48 -0000	1.23
  +++ DatabaseImpl.java	25 Jun 2004 14:28:22 -0000	1.24
  @@ -61,45 +61,45 @@
       /**
        * Driver property name for the xml-rpc service location.
        */
  -    private static final String PROP_SERVICE_LOCATION = "service-location";
  +    public static final String PROP_SERVICE_LOCATION = "service-location";
   
       /**
        * System property name for the service location
        */
  -    private static final String SYSPROP_SERVICE_LOCATION = "xindice.xmlrpc.service-location";
  +    public static final String SYSPROP_SERVICE_LOCATION = "xindice.xmlrpc.service-location";
   
       /**
        * Driver property name for the SAX parser xml-rpc will use.
        */
  -    private static final String PROP_XMLRPC_DRIVER = "xmlrpc-driver";
  +    public static final String PROP_XMLRPC_DRIVER = "xmlrpc-driver";
   
       /**
        * System property name for the SAX parser xml-rpc will use in case
        * there were no configuration property passed
        */
  -    private static final String SYSPROP_XMLRPC_DRIVER = "xindice.xmlrpc.driver";
  +    public static final String SYSPROP_XMLRPC_DRIVER = "xindice.xmlrpc.driver";
   
       /**
        * Driver property name for the basic authentication user name.
        */
  -    private static final String PROP_XMLRPC_USER = "xmlrpc-user";
  +    public static final String PROP_XMLRPC_USER = "xmlrpc-user";
   
       /**
        * System property name for the basic authentication user name in case
        * there were no configuration property passed
        */
  -    private static final String SYSPROP_XMLRPC_USER = "xindice.xmlrpc.user";
  +    public static final String SYSPROP_XMLRPC_USER = "xindice.xmlrpc.user";
   
       /**
        * Driver property name for the basic authentication password.
        */
  -    private static final String PROP_XMLRPC_PASSWORD = "xmlrpc-password";
  +    public static final String PROP_XMLRPC_PASSWORD = "xmlrpc-password";
   
       /**
        * System property name for the basic authentication password in case
        * there were no configuration property passed
        */
  -    private static final String SYSPROP_XMLRPC_PASSWORD = "xindice.xmlrpc.password";
  +    public static final String SYSPROP_XMLRPC_PASSWORD = "xindice.xmlrpc.password";
   
       /**
        * Default value of the xmlrpc-driver property