Class ZipSerializableViewImpl

java.lang.Object
org.jboss.shrinkwrap.impl.base.serialization.ZipSerializableViewImpl
All Implemented Interfaces:
Serializable, Assignable, SerializableView, ZipSerializableView

public class ZipSerializableViewImpl extends Object implements ZipSerializableView
Implementation of a Serializable view of Archives, backed by ZIP en/decoding the contents during serialization/deserialization. Defines the wire protocol and must remain backwards-compatible.
Version:
$Revision: $
See Also:
  • Field Details

    • serialVersionUID

      private static final long serialVersionUID
      serialVersionUID
      See Also:
    • log

      private static final Logger log
      Logger
    • name

      private final String name
      Name of the archive; to be serialized
    • id

      private transient String id
      String form of the ID
    • archive

      private transient Archive<?> archive
      Underlying archive. Won't be directly serialized; instead we'll encode it as ZIP and send that
  • Constructor Details

    • ZipSerializableViewImpl

      public ZipSerializableViewImpl(Archive<?> archive)
      Creates a new instance, wrapping the specified Archive
  • Method Details