Uses of Class
net.aifusion.metamodel.ObjectPath
Package
Description
This package contains an implementation of a CIM Client and CIM Server based on a lightweight HTTP server.
This package contains the basic implementation classes needed for the CIM metamodel, as well as a MOF parser.
This package contains the API used by all CIM providers, and the implementation of a basic in-memory provider.
-
Uses of ObjectPath in net.aifusion.cimserver
Modifier and TypeMethodDescriptionboolean
CimClient.contains
(ObjectPath path) boolean
CimClient.delete
(ObjectPath path) CimClient.filter
(ObjectPath path, CimFilter filter) CimClient.get
(ObjectPath path) CimClient.getMethodNames
(ObjectPath path) CimClient.getMethodParameters
(ObjectPath path, String methodName) CimClient.getMethodReturnType
(ObjectPath path, String methodName) CimClient.getPropertyNames
(ObjectPath path) CimClient.getPropertyType
(ObjectPath path, String propertyName) CimClient.getPropertyValue
(ObjectPath path, String propertyName) CimClient.invokeMethod
(ObjectPath path, String methodName, List<CimParameter> methodParameters) void
CimClient.setPropertyValue
(ObjectPath path, String propertyName, DataValue propertyValue) -
Uses of ObjectPath in net.aifusion.metamodel
Modifier and TypeMethodDescriptionNamedElement.getObjectPath()
Get the object path for this named elementstatic ObjectPath
JavaModelMapper.getObjectPathFromClass
(Class<?> javaClass) Get the object path corresponding to a Java class.Modifier and TypeMethodDescriptionboolean
BufferedCache.contains
(ObjectPath path) Deprecated, for removal: This API element is subject to removal in a future version.Check if an element exists in the buffer.boolean
InMemoryCache.contains
(ObjectPath path) boolean
InMemoryRepository.contains
(ObjectPath path) boolean
PersistentCache.contains
(ObjectPath path) boolean
Repository.contains
(ObjectPath path) Check if a named element exists in the repositoryboolean
InMemoryCache.delete
(ObjectPath path) boolean
InMemoryRepository.delete
(ObjectPath path) boolean
PersistentCache.delete
(ObjectPath path) boolean
Repository.delete
(ObjectPath path) Delete a named element from the repositoryInMemoryCache.filter
(ObjectPath path, CimFilter filter) InMemoryRepository.filter
(ObjectPath path, CimFilter filter) Repository.filter
(ObjectPath structPath, CimFilter filter) Find all structure value instances based on some filter criteriaBufferedCache.get
(ObjectPath path) Deprecated, for removal: This API element is subject to removal in a future version.Get a named element from the buffer.InMemoryCache.get
(ObjectPath path) InMemoryRepository.get
(ObjectPath path) PersistentCache.get
(ObjectPath path) Repository.get
(ObjectPath path) Get a named element from the repositoryBufferedCache.getBufferedElement
(ObjectPath path) Deprecated, for removal: This API element is subject to removal in a future version.Get a named element from the buffer.MOFParser.parsePropertyValue
(ObjectPath path, String propertyName, InputStream inputStream) Parse a property value from the input stream -
Uses of ObjectPath in net.aifusion.providers
Modifier and TypeMethodDescriptionboolean
BasicProvider.contains
(ObjectPath path) boolean
BasicProvider.delete
(ObjectPath path) BasicProvider.filter
(ObjectPath path, CimFilter filter) BasicProvider.get
(ObjectPath path) BasicProvider.getMethodNames
(ObjectPath path) Provider.getMethodNames
(ObjectPath path) Get the method names defined in a given CIM classBasicProvider.getMethodParameters
(ObjectPath path, String methodName) Provider.getMethodParameters
(ObjectPath path, String methodName) Get the parameter list associated with a methodBasicProvider.getMethodReturnType
(ObjectPath path, String methodName) Provider.getMethodReturnType
(ObjectPath path, String methodName) Get the return type associated with a methodBasicProvider.getPropertyNames
(ObjectPath path) Provider.getPropertyNames
(ObjectPath path) Get the property names for a given named element.BasicProvider.getPropertyType
(ObjectPath path, String propertyName) Provider.getPropertyType
(ObjectPath path, String propertyName) Get the data type corresponding to a particular property (or enumeration key)BasicProvider.getPropertyValue
(ObjectPath path, String propertyName) Provider.getPropertyValue
(ObjectPath path, String propertyName) Get a property value from this provider, or one of its children.BasicProvider.invokeMethod
(ObjectPath path, String methodName, List<CimParameter> methodParameters) Provider.invokeMethod
(ObjectPath path, String methodName, List<CimParameter> methodParameters) Invoke an extrinsic method on a class or instance within this provider, or one of its childrenvoid
BasicProvider.setPropertyValue
(ObjectPath path, String propertyName, DataValue propertyValue) void
Provider.setPropertyValue
(ObjectPath path, String propertyName, DataValue propertyValue) Set a property value within this provider, or one of its children