com.salesmanager.shop.model.content.ContentSettings Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sm-shop-model Show documentation
Show all versions of sm-shop-model Show documentation
sm-shop-model contains Shopizer model objects for api
The newest version!
package com.salesmanager.shop.model.content;
import java.io.Serializable;
/**
* System configuration settings for content management
* @author carlsamson
*
*/
public class ContentSettings implements Serializable {
/**
*
*/
private static final long serialVersionUID = 1L;
private String httpBasePath;
public String getHttpBasePath() {
return httpBasePath;
}
public void setHttpBasePath(String httpBasePath) {
this.httpBasePath = httpBasePath;
}
}