All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.xson.web.cache.vo.CacheRefVo Maven / Gradle / Ivy

Go to download

xco-web is an easy to use control layer framework, is part of the SOA system, using xml language to describe the controller.

The newest version!
package org.xson.web.cache.vo;

public class CacheRefVo {

	private CacheVo		cacheVo;

	private String[]	include;

	private String[]	exclude;

	public CacheRefVo(CacheVo cacheVo, String[] include, String[] exclude) {
		this.cacheVo = cacheVo;
		this.include = include;
		this.exclude = exclude;
	}

	public CacheVo getCacheVo() {
		return cacheVo;
	}

	public String[] getInclude() {
		return include;
	}

	public String[] getExclude() {
		return exclude;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy