Package org.forgerock.openig.heap
Record Class ReloadableResource
java.lang.Object
java.lang.Record
org.forgerock.openig.heap.ReloadableResource
- Record Components:
id- the identifier of the resource.resourceFile- the path to the resource file.format- the format of the resource file.
public record ReloadableResource(String id, Path resourceFile, ReloadableResource.Format format)
extends Record
A representation of a reloadable resource.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic enumThe format of the reloadable resource to register. -
Constructor Summary
ConstructorsConstructorDescriptionReloadableResource(String id, Path resourceFile, ReloadableResource.Format format) Constructs a new ReloadableResource. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.format()Returns the value of theformatrecord component.final inthashCode()Returns a hash code value for this object.id()Returns the value of theidrecord component.read()Reads the content of the resource file.Returns the value of theresourceFilerecord component.final StringtoString()Returns a string representation of this record class.voidUpdates the content of the resource file.
-
Constructor Details
-
ReloadableResource
Constructs a new ReloadableResource.- Parameters:
id- the identifier of the resource.resourceFile- the path to the resource file.format- the format of the resource file.
-
-
Method Details
-
update
Updates the content of the resource file.- Parameters:
content- the new content to write to the resource file.- Throws:
IOException- if there is a problem writing to the resource file.
-
read
Reads the content of the resource file.- Returns:
- the content of the resource file as a
JsonValue. - Throws:
IOException- if there is a problem reading the resource file.
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
id
Returns the value of theidrecord component.- Returns:
- the value of the
idrecord component
-
resourceFile
Returns the value of theresourceFilerecord component.- Returns:
- the value of the
resourceFilerecord component
-
format
Returns the value of theformatrecord component.- Returns:
- the value of the
formatrecord component
-