@ -1,5 +1,5 @@
@@ -1,5 +1,5 @@
/ *
* Copyright 2002 - 2010 the original author or authors .
* Copyright 2002 - 2011 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,6 +19,7 @@ package org.springframework.beans;
@@ -19,6 +19,7 @@ package org.springframework.beans;
import java.io.InputStream ;
import java.util.Map ;
import org.springframework.core.io.ContextResource ;
import org.springframework.core.io.Resource ;
/ * *
@ -29,6 +30,8 @@ public class ResourceTestBean {
@@ -29,6 +30,8 @@ public class ResourceTestBean {
private Resource resource ;
private ContextResource contextResource ;
private InputStream inputStream ;
private Resource [ ] resourceArray ;
@ -47,22 +50,30 @@ public class ResourceTestBean {
@@ -47,22 +50,30 @@ public class ResourceTestBean {
}
public Resource getResource ( ) {
return resource ;
}
public void setResource ( Resource resource ) {
this . resource = resource ;
}
public void setInputStream ( InputStream inputStream ) {
this . inputStream = inputStream ;
public ContextResource getContextResource ( ) {
return contextResource ;
}
public Resource getResource ( ) {
return r esource;
public void setContextResource ( ContextResource contextResource ) {
this . contextResource = contextR esource;
}
public InputStream getInputStream ( ) {
return inputStream ;
}
public void setInputStream ( InputStream inputStream ) {
this . inputStream = inputStream ;
}
public Resource [ ] getResourceArray ( ) {
return resourceArray ;
}