001    package org.codehaus.mojo.sql;
002    
003    import org.springframework.core.io.Resource;
004    
005    public class SqlResource {
006    
007            String location;
008            Resource resource;
009    
010            public String getLocation() {
011                    return location;
012            }
013    
014            public void setLocation(String location) {
015                    this.location = location;
016            }
017    
018            public Resource getResource() {
019                    return resource;
020            }
021    
022            public void setResource(Resource resource) {
023                    this.resource = resource;
024            }
025    
026    }