Deprecated API
Contents
-
Interfaces Interface Description com.vaadin.server.VariableOwner As of 7.0. Only provided to ease porting of Vaadin 6 components. Do not implement this directly, implementLegacyComponent
.com.vaadin.ui.FormFieldFactory As of 7.0, useFieldGroup
instead ofForm
for more flexibility.com.vaadin.ui.LegacyComponent As of 7.0. This class is only intended to ease migration and should not be used for new projects.
-
Classes Class Description com.vaadin.data.util.LegacyPropertyHelper This is only used internally for backwards compatibilitycom.vaadin.data.util.PropertyFormatter As of 7.0, replaced byConverter
com.vaadin.data.validator.DoubleValidator As of 7.0. Use aStringToDoubleConverter
converter on the field instead or bind the field to aProperty
of typeDouble
.com.vaadin.data.validator.IntegerValidator As of 7.0. Use aStringToIntegerConverter
converter on the field instead or bind the field to aProperty
of typeInteger
.com.vaadin.server.BootstrapHandler As of 7.0. Will likely change or be removed in a future versioncom.vaadin.server.LegacyApplication As of 7.0. This class is only intended to ease migration and should not be used for new projects.com.vaadin.server.LegacyApplicationUIProvider As of 7.0. Used only to support LegacyApplication - will be removed when LegacyApplication support is removed.com.vaadin.server.LegacyCommunicationManager As of 7.0. Will likely change or be removed in a future versioncom.vaadin.server.LegacyCommunicationManager.ClientCache As of 7.1. See #11410.com.vaadin.server.ServletPortletHelper As of 7.1. Will be removed or refactored in the future.com.vaadin.ui.Flash no modern browsers support Flash anymorecom.vaadin.ui.Form As of 7.0, useFieldGroup
instead ofForm
for more flexibility.com.vaadin.ui.LegacyWindow com.vaadin.ui.ProgressIndicator as of 7.1, useProgressBar
combined withUI#setPushMode(PushMode)
orUI.setPollInterval(int)
instead.com.vaadin.ui.Select As of 7.0. UseComboBox
instead.
-
Enums Enum Description com.vaadin.server.DeploymentConfiguration.LegacyProperyToStringMode com.vaadin.server.VaadinServlet.RequestType As of 7.0. This is no longer used and only provided for backwards compatibility. EachRequestHandler
can individually decide whether it wants to handle a request or not.
-
Exceptions Exceptions Description com.vaadin.server.LegacyCommunicationManager.InvalidUIDLSecurityKeyException As of 7.1. Will be removed in the future.
-
Constructors Constructor Description com.vaadin.data.util.BeanItemContainer(Collection<? extends BEANTYPE>) As of 6.5, useBeanItemContainer(Class, Collection)
insteadcom.vaadin.data.util.sqlcontainer.ColumnProperty(String, boolean, boolean, boolean, Object, Class<?>) As of 7.0. Useinstead
com.vaadin.data.util.sqlcontainer.query.FreeformQuery(String, List<String>, JDBCConnectionPool) As of 6.7, @seeFreeformQuery(String, JDBCConnectionPool, String...)
com.vaadin.data.validator.DoubleValidator(String) As of 7.0. Use a Double converter on the field instead and/or use aDoubleRangeValidator
for validating that the value is inside a given range.com.vaadin.data.validator.IntegerValidator(String) As of 7.0. Use an Integer converter on the field instead and/or use anIntegerRangeValidator
for validating that the value is inside a given range.com.vaadin.ui.DragAndDropWrapper() com.vaadin.ui.PopupView()
-
Annotation Type Elements Annotation Type Element Description com.vaadin.annotations.VaadinServletConfiguration.legacyPropertyToStringMode() as of 7.1, should only be used to ease migration