Interface MutableServerEntry

All Superinterfaces:
ServerEntry
All Known Subinterfaces:
IBinaryEntryData, ITransactionalEntryData
All Known Implementing Classes:
AbstractVersionedEntryData, FlatEntryData, HybridEntryData, MutableViewHybridEntryData, UserTypeEntryData

public interface MutableServerEntry extends ServerEntry
Represents a mutable server entry
Since:
9.1
Author:
Niv Ingberg.
  • Method Details

    • setPathValue

      void setPathValue(String path, Object value)
      Sets the specified path's value
      Parameters:
      path - Path pointing to the requested property.
      value - Value to set.
    • unsetPath

      void unsetPath(String path)
      Unsets the specified path. If the path points to a dynamic property or a map key it will be removed, if it points to a fixed property it will be set to null, in that case, the target path must point to a nullable property otherwise an error will occur.
      Parameters:
      path - Path pointing to the requested property.