Package org.datanucleus.store.schema
Interface StoreSchemaData
-
- All Known Subinterfaces:
ListStoreSchemaData,MapStoreSchemaData
public interface StoreSchemaDataInterface representing definition of some schema information in the datastore. Each component can have a set of properties. Typically extended by ListStoreSchemaData, or MapStoreSchemaData if part of a hierarchy of information.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddProperty(java.lang.String name, java.lang.Object value)Method to define a property for this component.java.lang.ObjectgetProperty(java.lang.String name)Accessor for a property of this store metadata component.
-
-
-
Method Detail
-
addProperty
void addProperty(java.lang.String name, java.lang.Object value)Method to define a property for this component.- Parameters:
name- Name of the propertyvalue- Value
-
getProperty
java.lang.Object getProperty(java.lang.String name)
Accessor for a property of this store metadata component.- Parameters:
name- Name of the property- Returns:
- Property value
-
-