com.alachisoft.ncache.serialization.util.ConfigAttributes Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nc-serialization Show documentation
Show all versions of nc-serialization Show documentation
Internal package of Alachisoft.
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.alachisoft.ncache.serialization.util;
/**
* @author Muneeb Shahid
*/
public class ConfigAttributes {
public static final class CompactSerialization {
public static final String id = "id";
public static final String name = "name";
public static final String assembly = "assembly";
public static final String type = "type";
public static final String isGeneric = "is-generic";
public static final String genericId = "generic-id";
public static final String noOfArgs = "no-of-args";
public static final String argumentsType = "arguments-type";
public static final String argTypes = "arg-types";
public static final String nonCompactFields = "non-compact-field";
}
}