Project

General

Profile

1
package eu.dnetlib.domain.data;
2

    
3
public class StoreInfo {
4
	private String serviceUrl = null;
5
	private String storeId = null;
6

    
7
	public String getServiceUrl() {
8
		return serviceUrl;
9
	}
10

    
11
	public void setServiceUrl(String serviceUrl) {
12
		this.serviceUrl = serviceUrl;
13
	}
14

    
15
	public String getStoreId() {
16
		return storeId;
17
	}
18

    
19
	public void setStoreId(String storeId) {
20
		this.storeId = storeId;
21
	}
22
}
(21-21/23)