summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSauli Tähkäpää <sauli@vaadin.com>2015-02-03 11:01:18 +0200
committerSauli Tähkäpää <sauli@vaadin.com>2015-02-03 11:01:18 +0200
commit2dc1de45ca9436decdd81249eed3b21d1e3ec084 (patch)
treeeef0b3d80cd5a21c0e3c271b466bf21625634e58
parent691b973ff78f933392ad72d4842a0d4d8cb4480a (diff)
downloadvaadin-framework-7.3.10.tar.gz
vaadin-framework-7.3.10.zip
Add @since for Transport.7.3.107.3
Change-Id: I1d4882c820722094128dac3a6f595d30286ee458
-rw-r--r--shared/src/com/vaadin/shared/ui/ui/Transport.java14
1 files changed, 10 insertions, 4 deletions
diff --git a/shared/src/com/vaadin/shared/ui/ui/Transport.java b/shared/src/com/vaadin/shared/ui/ui/Transport.java
index 39174caddf..1aae57e266 100644
--- a/shared/src/com/vaadin/shared/ui/ui/Transport.java
+++ b/shared/src/com/vaadin/shared/ui/ui/Transport.java
@@ -1,12 +1,12 @@
/*
* Copyright 2000-2014 Vaadin Ltd.
- *
+ *
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
- *
+ *
* http://www.apache.org/licenses/LICENSE-2.0
- *
+ *
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
@@ -18,7 +18,7 @@ package com.vaadin.shared.ui.ui;
/**
* Transport modes for Push
- *
+ *
* @since 7.1
* @author Vaadin Ltd
*/
@@ -46,6 +46,12 @@ public enum Transport {
return identifier;
}
+ /**
+ * Returns a Transport by its identifier. Returns null if no value is found
+ * for the given identifier.
+ *
+ * @since 7.3.10
+ */
public static Transport getByIdentifier(String identifier) {
for (Transport t : values()) {
if (t.getIdentifier().equals(identifier)) {