]> source.dussan.org Git - vaadin-framework.git/commitdiff
Remove Application.getVersion() (#9402)
authorLeif Åstrand <leif@vaadin.com>
Mon, 3 Sep 2012 06:57:35 +0000 (09:57 +0300)
committerLeif Åstrand <leif@vaadin.com>
Mon, 3 Sep 2012 11:05:29 +0000 (14:05 +0300)
client/src/com/vaadin/client/ApplicationConfiguration.java
client/src/com/vaadin/client/ApplicationConnection.java
server/src/com/vaadin/Application.java
server/src/com/vaadin/server/BootstrapHandler.java

index e364facb4388e54a8d562ba15374891cfc3ed944..0bb9bf1989d774b1ae2e64acbab3ad24d6b03c72 100644 (file)
@@ -153,18 +153,6 @@ public class ApplicationConfiguration implements EntryPoint {
             return this.getConfig("versionInfo").vaadinVersion;
         }-*/;
 
-        /**
-         * Gets the version of the application running on the server.
-         * 
-         * @return a string with the application version
-         * 
-         * @see com.vaadin.Application#getVersion()
-         */
-        private native String getApplicationVersion()
-        /*-{
-            return this.getConfig("versionInfo").applicationVersion;
-        }-*/;
-
         private native String getUIDL()
         /*-{
            return this.getConfig("uidl");
@@ -393,10 +381,6 @@ public class ApplicationConfiguration implements EntryPoint {
         return getJsoConfiguration(id).getVaadinVersion();
     }
 
-    public String getApplicationVersion() {
-        return getJsoConfiguration(id).getApplicationVersion();
-    }
-
     public Class<? extends ServerConnector> getConnectorClassByEncodedTag(
             int tag) {
         Class<? extends ServerConnector> type = classes.get(tag);
index 88510e7bf6e9469633e54c6de30142a718c873bd..6a1474fa45a020c795d14a68a3ebe1a3a6ff510d 100644 (file)
@@ -264,7 +264,6 @@ public class ApplicationConnection {
 
         VConsole.log("Vaadin application servlet version: "
                 + cnf.getServletVersion());
-        VConsole.log("Application version: " + cnf.getApplicationVersion());
 
         if (!cnf.getServletVersion().equals(Version.getFullVersion())) {
             VConsole.error("Warning: your widget set seems to be built with a different "
index 90f354e18052df6af994cdf077d50dfb9631860e..f8ff812c941031bfca3948786b817af850ac8e8a 100644 (file)
@@ -61,10 +61,10 @@ import com.vaadin.server.CombinedRequest;
 import com.vaadin.server.DeploymentConfiguration;
 import com.vaadin.server.GlobalResourceHandler;
 import com.vaadin.server.RequestHandler;
+import com.vaadin.server.ServletApplicationContext;
 import com.vaadin.server.Terminal;
 import com.vaadin.server.UIProvider;
 import com.vaadin.server.VariableOwner;
-import com.vaadin.server.ServletApplicationContext;
 import com.vaadin.server.WrappedRequest;
 import com.vaadin.server.WrappedRequest.BrowserDetails;
 import com.vaadin.server.WrappedResponse;
@@ -867,8 +867,8 @@ public class Application implements Terminal.ErrorListener, Serializable {
      * </p>
      * <p>
      * By default, when you are deploying your application to a servlet
-     * container, the implementation class is {@link ServletApplicationContext} -
-     * you can safely cast to this class and use the methods from there. When
+     * container, the implementation class is {@link ServletApplicationContext}
+     * you can safely cast to this class and use the methods from there. When
      * you are deploying your application as a portlet, context implementation
      * is {@link PortletApplicationContext}.
      * </p>
@@ -879,17 +879,6 @@ public class Application implements Terminal.ErrorListener, Serializable {
         return context;
     }
 
-    /**
-     * Override this method to return correct version number of your
-     * Application. Version information is delivered for example to Testing
-     * Tools test results. By default this returns a string "NONVERSIONED".
-     * 
-     * @return version string
-     */
-    public String getVersion() {
-        return "NONVERSIONED";
-    }
-
     /**
      * Gets the application error handler.
      * 
index 60ac40916c479dc7fde60d52fcdc3c8a47846a77..df46bb12eeeb04f0061f1d1c30f81c408ac1ac72 100644 (file)
@@ -401,7 +401,6 @@ public abstract class BootstrapHandler implements RequestHandler {
 
         JSONObject versionInfo = new JSONObject();
         versionInfo.put("vaadinVersion", Version.getFullVersion());
-        versionInfo.put("applicationVersion", application.getVersion());
         appConfig.put("versionInfo", versionInfo);
 
         appConfig.put("widgetset", context.getWidgetsetName());