Set the value of the port property @param port The port as a string.
(String port)
| 679 | * @param port The port as a string. |
| 680 | */ |
| 681 | public void setPort(String port) { |
| 682 | if (port == null) { |
| 683 | this.port = null; |
| 684 | } else { |
| 685 | this.port = port; |
| 686 | |
| 687 | } |
| 688 | } |
| 689 | |
| 690 | @Override |
| 691 | public Url deserialize(JsonElement json, Type typeOfT, JsonDeserializationContext context) throws JsonParseException { |