Uses of Class
net.aifusion.metamodel.ObjectPath
Packages that use 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
Methods in net.aifusion.cimserver with parameters of type ObjectPathModifier and TypeMethodDescriptionbooleanCimClient.contains(ObjectPath path) booleanCimClient.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) voidCimClient.setPropertyValue(ObjectPath path, String propertyName, DataValue propertyValue) -
Uses of ObjectPath in net.aifusion.metamodel
Methods in net.aifusion.metamodel that return ObjectPathModifier and TypeMethodDescriptionNamedElement.getObjectPath()Get the object path for this named elementstatic ObjectPathJavaModelMapper.getObjectPathFromClass(Class<?> javaClass) Get the object path corresponding to a Java class.Methods in net.aifusion.metamodel with parameters of type ObjectPathModifier and TypeMethodDescriptionbooleanBufferedCache.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.booleanInMemoryCache.contains(ObjectPath path) booleanInMemoryRepository.contains(ObjectPath path) booleanPersistentCache.contains(ObjectPath path) booleanRepository.contains(ObjectPath path) Check if a named element exists in the repositorybooleanInMemoryCache.delete(ObjectPath path) booleanInMemoryRepository.delete(ObjectPath path) booleanPersistentCache.delete(ObjectPath path) booleanRepository.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
Methods in net.aifusion.providers with parameters of type ObjectPathModifier and TypeMethodDescriptionbooleanBasicProvider.contains(ObjectPath path) booleanBasicProvider.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 childrenvoidBasicProvider.setPropertyValue(ObjectPath path, String propertyName, DataValue propertyValue) voidProvider.setPropertyValue(ObjectPath path, String propertyName, DataValue propertyValue) Set a property value within this provider, or one of its children