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

com.github.zhangzw0505.commons.constants.CacheControlDirective Maven / Gradle / Ivy

The newest version!
package com.github.zhangzw0505.commons.constants;

/**
 * Cache-Control
 */
public interface CacheControlDirective {
	
	public static final String PUBLIC = "public";
	
	public static final String PRIVATE = "private";
	
	public static final String NO_CACHE = "no-cache";
	
	public static final String NO_STORE = "no-store";
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy