1 package org.codehaus.mojo.sql;
2
3 import org.springframework.core.io.Resource;
4
5 public class SqlResource {
6
7 String location;
8 Resource resource;
9
10 public String getLocation() {
11 return location;
12 }
13
14 public void setLocation(String location) {
15 this.location = location;
16 }
17
18 public Resource getResource() {
19 return resource;
20 }
21
22 public void setResource(Resource resource) {
23 this.resource = resource;
24 }
25
26 }