com.alachisoft.ncache.web.config.dom.Cache Maven / Gradle / Ivy
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.alachisoft.ncache.web.config.dom;
import Alachisoft.NCache.Common.Configuration.ConfigurationAttributeAnnotation;
import java.io.Serializable;
/**
*
* @author huma_kauser
*/
public class Cache implements Serializable{
private String _id;
@ConfigurationAttributeAnnotation(value = "id", appendText = "")
public final String getId() {
return _id;
}
@ConfigurationAttributeAnnotation(value = "id", appendText = "")
public final void setId(String value) {
_id = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy