|
|
|
@ -1,5 +1,5 @@
@@ -1,5 +1,5 @@
|
|
|
|
|
/* |
|
|
|
|
* Copyright 2002-2019 the original author or authors. |
|
|
|
|
* Copyright 2002-2020 the original author or authors. |
|
|
|
|
* |
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); |
|
|
|
|
* you may not use this file except in compliance with the License. |
|
|
|
@ -19,19 +19,25 @@ package org.springframework.expression.spel.testresources;
@@ -19,19 +19,25 @@ package org.springframework.expression.spel.testresources;
|
|
|
|
|
import java.util.List; |
|
|
|
|
|
|
|
|
|
public class TestAddress{ |
|
|
|
|
private String street; |
|
|
|
|
private List<String> crossStreets; |
|
|
|
|
|
|
|
|
|
public String getStreet() { |
|
|
|
|
return street; |
|
|
|
|
} |
|
|
|
|
public void setStreet(String street) { |
|
|
|
|
this.street = street; |
|
|
|
|
} |
|
|
|
|
public List<String> getCrossStreets() { |
|
|
|
|
return crossStreets; |
|
|
|
|
} |
|
|
|
|
public void setCrossStreets(List<String> crossStreets) { |
|
|
|
|
this.crossStreets = crossStreets; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private String street; |
|
|
|
|
|
|
|
|
|
private List<String> crossStreets; |
|
|
|
|
|
|
|
|
|
public String getStreet() { |
|
|
|
|
return street; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setStreet(String street) { |
|
|
|
|
this.street = street; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public List<String> getCrossStreets() { |
|
|
|
|
return crossStreets; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setCrossStreets(List<String> crossStreets) { |
|
|
|
|
this.crossStreets = crossStreets; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|