Class SimpleSubjectUserInfo.Externalizer

    • Constructor Detail

      • Externalizer

        public Externalizer()
    • Method Detail

      • writeObject

        public void writeObject​(java.io.ObjectOutput output,
                                SimpleSubjectUserInfo object)
                         throws java.io.IOException
        Description copied from interface: Externalizer
        Write the object reference to the stream.
        Specified by:
        writeObject in interface Externalizer<SimpleSubjectUserInfo>
        Parameters:
        output - the object output to write to
        object - the object reference to write
        Throws:
        java.io.IOException - if an I/O error occurs
      • readObject

        public SimpleSubjectUserInfo readObject​(java.io.ObjectInput input)
                                         throws java.io.IOException,
                                                java.lang.ClassNotFoundException
        Description copied from interface: Externalizer
        Read an instance from the stream. The instance will have been written by the Externalizer.writeObject(ObjectOutput, Object) method. Implementations are free to create instances of the object read from the stream in any way that they feel like. This could be via constructor, factory or reflection.
        Specified by:
        readObject in interface Externalizer<SimpleSubjectUserInfo>
        Parameters:
        input - the object input to read from
        Returns:
        the object instance
        Throws:
        java.io.IOException - if an I/O error occurs
        java.lang.ClassNotFoundException - if a class could not be found