Example #1
0
  /**
   * This method is called by the super class to construct a complete serialized stream of the
   * entry.
   *
   * @return Message that contains enough enformation to reconstruct the specific data.
   */
  protected Message getSpecific() {
    NEOFlowSpecificMessage nsm = new NEOFlowSpecificMessage();
    nsm.setAllowType(allowType);
    nsm.setAllowProto(allowProtocol);
    nsm.setDoFlagCheck(doFlagCheck);
    nsm.setTcpFlagRanges(tcpFlagRanges);

    return nsm;
  }