Author: sagara Date: Mon Jun 18 08:51:16 2012 New Revision: 1351243 URL: http://svn.apache.org/viewvc?rev=1351243&view=rev Log: AXIS2-5315 - removed another set of deprecated methods from kernel.
Modified: axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/context/ConfigurationContext.java axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/deployment/repository/util/DeploymentFileData.java axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/transport/TransportListener.java Modified: axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/context/ConfigurationContext.java URL: http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/context/ConfigurationContext.java?rev=1351243&r1=1351242&r2=1351243&view=diff ============================================================================== --- axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/context/ConfigurationContext.java (original) +++ axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/context/ConfigurationContext.java Mon Jun 18 08:51:16 2012 @@ -588,13 +588,6 @@ public class ConfigurationContext extend return ids; } - /** - * @return The ServiceGroupContexts - * @deprecated Use {@link #getServiceGroupContextIDs} & {@link #getServiceGroupContext(String)} - */ - public Hashtable<String, ServiceGroupContext> getServiceGroupContexts() { - return serviceGroupContextMap; - } /** * Returns the thread factory. @@ -915,14 +908,6 @@ public class ConfigurationContext extend } /** - * @deprecated MISSPELLING - Please use getServiceGroupContextTimeoutInterval() - * @return the service group context timeout interval - */ - public long getServiceGroupContextTimoutInterval() { - return getServiceGroupContextTimeoutInterval(); - } - - /** * This will be used to fetch the serviceGroupContextTimoutInterval from any place available. * * @return the service group context timeout interval (in milliseconds) Modified: axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/deployment/repository/util/DeploymentFileData.java URL: http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/deployment/repository/util/DeploymentFileData.java?rev=1351243&r1=1351242&r2=1351243&view=diff ============================================================================== --- axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/deployment/repository/util/DeploymentFileData.java (original) +++ axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/deployment/repository/util/DeploymentFileData.java Mon Jun 18 08:51:16 2012 @@ -85,15 +85,6 @@ public class DeploymentFileData { return file.getName(); // No need to check for null due to constructor check } - /** - * Get the name of the file. - * - * @return the name of the referenced file - * @deprecated please use getName() instead - this will disappear after 1.3. - */ - public String getServiceName() { - return getName(); - } public static boolean isModuleArchiveFile(String filename) { return (filename.endsWith(".mar")); Modified: axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/transport/TransportListener.java URL: http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/transport/TransportListener.java?rev=1351243&r1=1351242&r2=1351243&view=diff ============================================================================== --- axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/transport/TransportListener.java (original) +++ axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/transport/TransportListener.java Mon Jun 18 08:51:16 2012 @@ -43,15 +43,6 @@ public interface TransportListener { void stop() throws AxisFault; /** - * @param serviceName - * @param ip - * @throws AxisFault - * @deprecated Transport listener can expose more than EPRs. So this method should return an array of EPRs. - * Deprecating this method for now and please use getEPRsForServices instead. - */ - EndpointReference getEPRForService(String serviceName, String ip) throws AxisFault; - - /** * Get the endpoint references for a given service. These are the addresses that a client * can use to send requests to the given service through this transport. *