com.afkl.generic.mashery.model.MasheryServiceCache Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mashery-sdk Show documentation
Show all versions of mashery-sdk Show documentation
SDK built on top of Intel-Mashery's V3 API.
The newest version!
package com.afkl.generic.mashery.model;
public class MasheryServiceCache {
private Integer cacheTtl;
public Integer getCacheTtl() {
return cacheTtl;
}
public void setCacheTtl(int cacheTtl) {
this.cacheTtl = cacheTtl;
}
}