Record Class UnZipScenarioService.UnzippedScenarioData

java.lang.Object
java.lang.Record
it.uniupo.simnova.service.scenario.operations.UnZipScenarioService.UnzippedScenarioData
Record Components:
scenarioJson - L'array di byte del contenuto del file scenario.json.
mediaFiles - Una Map dove la chiave è il nome del file multimediale (String) e il valore è il contenuto del file come array di byte (byte[]).
Enclosing class:
UnZipScenarioService

public static record UnZipScenarioService.UnzippedScenarioData(byte[] scenarioJson, Map<String,byte[]> mediaFiles) extends Record
Record immutabile che incapsula i dati estratti da un file ZIP di uno scenario. Contiene il contenuto del file scenario.json e una mappa di file multimediali.
Version:
1.0
Author:
Alessandro Zappatore
  • Constructor Details

    • UnzippedScenarioData

      public UnzippedScenarioData(byte[] scenarioJson, Map<String,byte[]> mediaFiles)
      Creates an instance of a UnzippedScenarioData record class.
      Parameters:
      scenarioJson - the value for the scenarioJson record component
      mediaFiles - the value for the mediaFiles record component
  • Method Details

    • toString

      public final String 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      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 with Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • scenarioJson

      public byte[] scenarioJson()
      Returns the value of the scenarioJson record component.
      Returns:
      the value of the scenarioJson record component
    • mediaFiles

      public Map<String,byte[]> mediaFiles()
      Returns the value of the mediaFiles record component.
      Returns:
      the value of the mediaFiles record component