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

com.untzuntz.ustackserverapi.auth.CachedAccess Maven / Gradle / Ivy

There is a newer version: 2.1.115
Show newest version
package com.untzuntz.ustackserverapi.auth;

public enum CachedAccess {

	True("T", 300),
	False("F", 60),
	None("N", 30);
	
	private String type;
	private int cacheTTL;
	private CachedAccess(String type, int cacheTTL) {
		this.type = type;
		this.cacheTTL = cacheTTL;
	}
	
	public String getType() {
		return type;
	}
	
	public int getCacheTTL() {
		return cacheTTL;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy