public abstract class javax.xml.soap.SOAPMessage
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: javax.xml.soap.SOAPMessage
  super_class: java.lang.Object
{
  public static final java.lang.String CHARACTER_SET_ENCODING;
    descriptor: Ljava/lang/String;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: "javax.xml.soap.character-set-encoding"

  public static final java.lang.String WRITE_XML_DECLARATION;
    descriptor: Ljava/lang/String;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: "javax.xml.soap.write-xml-declaration"

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.xml.soap.SOAPMessage this
         0: .line 105
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // javax.xml.soap.SOAPMessage this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/xml/soap/SOAPMessage;

  public abstract void setContentDescription(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
             Name  Flags
      description  

  public abstract java.lang.String getContentDescription();
    descriptor: ()Ljava/lang/String;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract javax.xml.soap.SOAPPart getSOAPPart();
    descriptor: ()Ljavax/xml/soap/SOAPPart;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public javax.xml.soap.SOAPBody getSOAPBody();
    descriptor: ()Ljavax/xml/soap/SOAPBody;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // javax.xml.soap.SOAPMessage this
         0: .line 169
            new java.lang.UnsupportedOperationException
            dup
            ldc "getSOAPBody must be overridden by all subclasses of SOAPMessage"
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // javax.xml.soap.SOAPMessage this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/xml/soap/SOAPMessage;
    Exceptions:
      throws javax.xml.soap.SOAPException

  public javax.xml.soap.SOAPHeader getSOAPHeader();
    descriptor: ()Ljavax/xml/soap/SOAPHeader;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // javax.xml.soap.SOAPMessage this
         0: .line 182
            new java.lang.UnsupportedOperationException
            dup
            ldc "getSOAPHeader must be overridden by all subclasses of SOAPMessage"
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // javax.xml.soap.SOAPMessage this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/xml/soap/SOAPMessage;
    Exceptions:
      throws javax.xml.soap.SOAPException

  public abstract void removeAllAttachments();
    descriptor: ()V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract int countAttachments();
    descriptor: ()I
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract java.util.Iterator<javax.xml.soap.AttachmentPart> getAttachments();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: ()Ljava/util/Iterator<Ljavax/xml/soap/AttachmentPart;>;

  public abstract java.util.Iterator<javax.xml.soap.AttachmentPart> getAttachments(javax.xml.soap.MimeHeaders);
    descriptor: (Ljavax/xml/soap/MimeHeaders;)Ljava/util/Iterator;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Ljavax/xml/soap/MimeHeaders;)Ljava/util/Iterator<Ljavax/xml/soap/AttachmentPart;>;
    MethodParameters:
         Name  Flags
      headers  

  public abstract void removeAttachments(javax.xml.soap.MimeHeaders);
    descriptor: (Ljavax/xml/soap/MimeHeaders;)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
         Name  Flags
      headers  

  public abstract javax.xml.soap.AttachmentPart getAttachment(javax.xml.soap.SOAPElement);
    descriptor: (Ljavax/xml/soap/SOAPElement;)Ljavax/xml/soap/AttachmentPart;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws javax.xml.soap.SOAPException
    MethodParameters:
         Name  Flags
      element  

  public abstract void addAttachmentPart(javax.xml.soap.AttachmentPart);
    descriptor: (Ljavax/xml/soap/AttachmentPart;)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
                Name  Flags
      attachmentPart  

  public abstract javax.xml.soap.AttachmentPart createAttachmentPart();
    descriptor: ()Ljavax/xml/soap/AttachmentPart;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public javax.xml.soap.AttachmentPart createAttachmentPart(javax.activation.DataHandler);
    descriptor: (Ljavax/activation/DataHandler;)Ljavax/xml/soap/AttachmentPart;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // javax.xml.soap.SOAPMessage this
        start local 1 // javax.activation.DataHandler dataHandler
         0: .line 306
            aload 0 /* this */
            invokevirtual javax.xml.soap.SOAPMessage.createAttachmentPart:()Ljavax/xml/soap/AttachmentPart;
            astore 2 /* attachment */
        start local 2 // javax.xml.soap.AttachmentPart attachment
         1: .line 307
            aload 2 /* attachment */
            aload 1 /* dataHandler */
            invokevirtual javax.xml.soap.AttachmentPart.setDataHandler:(Ljavax/activation/DataHandler;)V
         2: .line 308
            aload 2 /* attachment */
            areturn
        end local 2 // javax.xml.soap.AttachmentPart attachment
        end local 1 // javax.activation.DataHandler dataHandler
        end local 0 // javax.xml.soap.SOAPMessage this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    3     0         this  Ljavax/xml/soap/SOAPMessage;
            0    3     1  dataHandler  Ljavax/activation/DataHandler;
            1    3     2   attachment  Ljavax/xml/soap/AttachmentPart;
    MethodParameters:
             Name  Flags
      dataHandler  

  public abstract javax.xml.soap.MimeHeaders getMimeHeaders();
    descriptor: ()Ljavax/xml/soap/MimeHeaders;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public javax.xml.soap.AttachmentPart createAttachmentPart(java.lang.Object, java.lang.String);
    descriptor: (Ljava/lang/Object;Ljava/lang/String;)Ljavax/xml/soap/AttachmentPart;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // javax.xml.soap.SOAPMessage this
        start local 1 // java.lang.Object content
        start local 2 // java.lang.String contentType
         0: .line 345
            aload 0 /* this */
            invokevirtual javax.xml.soap.SOAPMessage.createAttachmentPart:()Ljavax/xml/soap/AttachmentPart;
            astore 3 /* attachment */
        start local 3 // javax.xml.soap.AttachmentPart attachment
         1: .line 346
            aload 3 /* attachment */
            aload 1 /* content */
            aload 2 /* contentType */
            invokevirtual javax.xml.soap.AttachmentPart.setContent:(Ljava/lang/Object;Ljava/lang/String;)V
         2: .line 347
            aload 3 /* attachment */
            areturn
        end local 3 // javax.xml.soap.AttachmentPart attachment
        end local 2 // java.lang.String contentType
        end local 1 // java.lang.Object content
        end local 0 // javax.xml.soap.SOAPMessage this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    3     0         this  Ljavax/xml/soap/SOAPMessage;
            0    3     1      content  Ljava/lang/Object;
            0    3     2  contentType  Ljava/lang/String;
            1    3     3   attachment  Ljavax/xml/soap/AttachmentPart;
    MethodParameters:
             Name  Flags
      content      
      contentType  

  public abstract void saveChanges();
    descriptor: ()V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws javax.xml.soap.SOAPException

  public abstract boolean saveRequired();
    descriptor: ()Z
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract void writeTo(java.io.OutputStream);
    descriptor: (Ljava/io/OutputStream;)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws javax.xml.soap.SOAPException, java.io.IOException
    MethodParameters:
      Name  Flags
      out   

  public void setProperty(java.lang.String, java.lang.Object);
    descriptor: (Ljava/lang/String;Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // javax.xml.soap.SOAPMessage this
        start local 1 // java.lang.String property
        start local 2 // java.lang.Object value
         0: .line 438
            new java.lang.UnsupportedOperationException
            dup
            ldc "setProperty must be overridden by all subclasses of SOAPMessage"
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 2 // java.lang.Object value
        end local 1 // java.lang.String property
        end local 0 // javax.xml.soap.SOAPMessage this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Ljavax/xml/soap/SOAPMessage;
            0    1     1  property  Ljava/lang/String;
            0    1     2     value  Ljava/lang/Object;
    Exceptions:
      throws javax.xml.soap.SOAPException
    MethodParameters:
          Name  Flags
      property  
      value     

  public java.lang.Object getProperty(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // javax.xml.soap.SOAPMessage this
        start local 1 // java.lang.String property
         0: .line 453
            new java.lang.UnsupportedOperationException
            dup
            ldc "getProperty must be overridden by all subclasses of SOAPMessage"
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // java.lang.String property
        end local 0 // javax.xml.soap.SOAPMessage this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Ljavax/xml/soap/SOAPMessage;
            0    1     1  property  Ljava/lang/String;
    Exceptions:
      throws javax.xml.soap.SOAPException
    MethodParameters:
          Name  Flags
      property  
}
SourceFile: "SOAPMessage.java"