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

com.alachisoft.ncache.web.config.dom.PrimaryCache 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 PrimaryCache implements Serializable {

    private String _id = "";
    private String _prefix = "";

    @ConfigurationAttributeAnnotation(value = "id", appendText = "")
    public final String getId() {
        return _id;
    }

    @ConfigurationAttributeAnnotation(value = "id", appendText = "")
    public final void setId(String value) {
        _id = value;
    }
    @ConfigurationAttributeAnnotation(value = "sid-prefix", appendText = "")
    public final String getPrefix() {
        return _prefix;
    }

    @ConfigurationAttributeAnnotation(value = "sid-prefix", appendText = "")
    public final void setPrefix(String value) {
        _prefix = value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy