Ejemplo n.º 1
0
 @Override
 public void write(org.apache.thrift.protocol.TProtocol prot, AnnouncementResponse struct)
     throws org.apache.thrift.TException {
   TTupleProtocol oprot = (TTupleProtocol) prot;
   BitSet optionals = new BitSet();
   if (struct.isSetAnnouncements()) {
     optionals.set(0);
   }
   oprot.writeBitSet(optionals, 1);
   if (struct.isSetAnnouncements()) {
     {
       oprot.writeI32(struct.announcements.size());
       for (Announcement _iter76 : struct.announcements) {
         _iter76.write(oprot);
       }
     }
   }
 }
Ejemplo n.º 2
0
 /** Performs a deep copy on <i>other</i>. */
 public AnnouncementResponse(AnnouncementResponse other) {
   if (other.isSetAnnouncements()) {
     List<Announcement> __this__announcements =
         new ArrayList<Announcement>(other.announcements.size());
     for (Announcement other_element : other.announcements) {
       __this__announcements.add(new Announcement(other_element));
     }
     this.announcements = __this__announcements;
   }
 }
Ejemplo n.º 3
0
 @Override
 public void read(org.apache.thrift.protocol.TProtocol prot, AnnouncementResponse struct)
     throws org.apache.thrift.TException {
   TTupleProtocol iprot = (TTupleProtocol) prot;
   BitSet incoming = iprot.readBitSet(1);
   if (incoming.get(0)) {
     {
       org.apache.thrift.protocol.TList _list77 =
           new org.apache.thrift.protocol.TList(
               org.apache.thrift.protocol.TType.STRUCT, iprot.readI32());
       struct.announcements = new ArrayList<Announcement>(_list77.size);
       Announcement _elem78;
       for (int _i79 = 0; _i79 < _list77.size; ++_i79) {
         _elem78 = new Announcement();
         _elem78.read(iprot);
         struct.announcements.add(_elem78);
       }
     }
     struct.setAnnouncementsIsSet(true);
   }
 }
Ejemplo n.º 4
0
  @Override
  public int compareTo(AnnouncementResponse other) {
    if (!getClass().equals(other.getClass())) {
      return getClass().getName().compareTo(other.getClass().getName());
    }

    int lastComparison = 0;

    lastComparison = Boolean.valueOf(isSetAnnouncements()).compareTo(other.isSetAnnouncements());
    if (lastComparison != 0) {
      return lastComparison;
    }
    if (isSetAnnouncements()) {
      lastComparison =
          org.apache.thrift.TBaseHelper.compareTo(this.announcements, other.announcements);
      if (lastComparison != 0) {
        return lastComparison;
      }
    }
    return 0;
  }
Ejemplo n.º 5
0
  public boolean equals(AnnouncementResponse that) {
    if (that == null) return false;

    boolean this_present_announcements = true && this.isSetAnnouncements();
    boolean that_present_announcements = true && that.isSetAnnouncements();
    if (this_present_announcements || that_present_announcements) {
      if (!(this_present_announcements && that_present_announcements)) return false;
      if (!this.announcements.equals(that.announcements)) return false;
    }

    return true;
  }
Ejemplo n.º 6
0
    public void read(org.apache.thrift.protocol.TProtocol iprot, AnnouncementResponse struct)
        throws org.apache.thrift.TException {
      org.apache.thrift.protocol.TField schemeField;
      iprot.readStructBegin();
      while (true) {
        schemeField = iprot.readFieldBegin();
        if (schemeField.type == org.apache.thrift.protocol.TType.STOP) {
          break;
        }
        switch (schemeField.id) {
          case 1: // ANNOUNCEMENTS
            if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
              {
                org.apache.thrift.protocol.TList _list72 = iprot.readListBegin();
                struct.announcements = new ArrayList<Announcement>(_list72.size);
                Announcement _elem73;
                for (int _i74 = 0; _i74 < _list72.size; ++_i74) {
                  _elem73 = new Announcement();
                  _elem73.read(iprot);
                  struct.announcements.add(_elem73);
                }
                iprot.readListEnd();
              }
              struct.setAnnouncementsIsSet(true);
            } else {
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
            }
            break;
          default:
            org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
        }
        iprot.readFieldEnd();
      }
      iprot.readStructEnd();

      // check for required fields of primitive type, which can't be checked in the validate method
      struct.validate();
    }
Ejemplo n.º 7
0
    public void write(org.apache.thrift.protocol.TProtocol oprot, AnnouncementResponse struct)
        throws org.apache.thrift.TException {
      struct.validate();

      oprot.writeStructBegin(STRUCT_DESC);
      if (struct.announcements != null) {
        if (struct.isSetAnnouncements()) {
          oprot.writeFieldBegin(ANNOUNCEMENTS_FIELD_DESC);
          {
            oprot.writeListBegin(
                new org.apache.thrift.protocol.TList(
                    org.apache.thrift.protocol.TType.STRUCT, struct.announcements.size()));
            for (Announcement _iter75 : struct.announcements) {
              _iter75.write(oprot);
            }
            oprot.writeListEnd();
          }
          oprot.writeFieldEnd();
        }
      }
      oprot.writeFieldStop();
      oprot.writeStructEnd();
    }