ImageFilePathUtils.java

24 lines | 363 B Blame History Raw Download
package com.salesmanager.shop.utils;

import com.salesmanager.shop.constants.Constants;

public class ImageFilePathUtils extends AbstractimageFilePath{
	
	private String basePath = Constants.STATIC_URI;

	@Override
	public String getBasePath() {
		return basePath;
	}

	@Override
	public void setBasePath(String basePath) {
		this.basePath = basePath;
	}




	
}