Class GridClientCacheBean
- java.lang.Object
-
- org.apache.ignite.internal.processors.rest.client.message.GridClientCacheBean
-
- All Implemented Interfaces:
Serializable
public class GridClientCacheBean extends Object implements Serializable
Cache bean.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description GridClientCacheBean()GridClientCacheBean(String name, GridClientCacheMode mode, String sqlSchema)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object obj)GridClientCacheModegetMode()Gets cache mode.StringgetName()Gets cache name.StringgetSqlSchema()Gets custom name of the sql schema.inthashCode()voidsetMode(GridClientCacheMode mode)Sets cache mode.voidsetName(String name)Sets cache name.voidsetSqlSchema(String sqlSchema)Sets custom name of the sql schema.StringtoString()
-
-
-
Constructor Detail
-
GridClientCacheBean
public GridClientCacheBean()
-
GridClientCacheBean
public GridClientCacheBean(String name, GridClientCacheMode mode, String sqlSchema)
-
-
Method Detail
-
getName
public String getName()
Gets cache name.- Returns:
- Cache name.
-
setName
public void setName(String name)
Sets cache name.- Parameters:
name- Cache name.
-
getMode
public GridClientCacheMode getMode()
Gets cache mode.- Returns:
- Cache mode.
-
setMode
public void setMode(GridClientCacheMode mode)
Sets cache mode.- Parameters:
mode- Cache mode.
-
getSqlSchema
public String getSqlSchema()
Gets custom name of the sql schema.- Returns:
- Custom name of the sql schema.
-
setSqlSchema
public void setSqlSchema(String sqlSchema)
Sets custom name of the sql schema.- Parameters:
sqlSchema- Custom name of the sql schema.
-
-