You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by ch...@apache.org on 2004/12/23 11:51:13 UTC

svn commit: r123185 - /webservices/axis/trunk/java/dev/scratch/prototype2/src/java/org/apache/axis/impl/description/AxisService.java

Author: chathura
Date: Thu Dec 23 02:51:13 2004
New Revision: 123185

URL: http://svn.apache.org/viewcvs?view=rev&rev=123185
Log:
Removing Classname from AxisService (Service Desc)
Modified:
   webservices/axis/trunk/java/dev/scratch/prototype2/src/java/org/apache/axis/impl/description/AxisService.java

Modified: webservices/axis/trunk/java/dev/scratch/prototype2/src/java/org/apache/axis/impl/description/AxisService.java
Url: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/dev/scratch/prototype2/src/java/org/apache/axis/impl/description/AxisService.java?view=diff&rev=123185&p1=webservices/axis/trunk/java/dev/scratch/prototype2/src/java/org/apache/axis/impl/description/AxisService.java&r1=123184&p2=webservices/axis/trunk/java/dev/scratch/prototype2/src/java/org/apache/axis/impl/description/AxisService.java&r2=123185
==============================================================================
--- webservices/axis/trunk/java/dev/scratch/prototype2/src/java/org/apache/axis/impl/description/AxisService.java	(original)
+++ webservices/axis/trunk/java/dev/scratch/prototype2/src/java/org/apache/axis/impl/description/AxisService.java	Thu Dec 23 02:51:13 2004
@@ -287,13 +287,6 @@
         return (Class)this.getComponentProperty(DescriptionConstants.SERVICE_CLASS);
     }
 
-    public void setServiceClassName(String className) {
-       if(null != className)
-           this.setComponentProperty(DescriptionConstants.SERVICE_CLASS_NAME, className);
-    }
-
-    public String getServiceClassName() {
-        return (String) this.getComponentProperty(DescriptionConstants.SERVICE_CLASS_NAME);
-    }
+    
 
 }