summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/openslx/bwlp/thrift/iface/SatelliteConfig.java
blob: 473759652b924ab7923e0b7918f4fcc3bc202886 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
/**
 * Autogenerated by Thrift Compiler (0.9.3)
 *
 * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
 *  @generated
 */
package org.openslx.bwlp.thrift.iface;

import org.apache.thrift.scheme.IScheme;
import org.apache.thrift.scheme.SchemeFactory;
import org.apache.thrift.scheme.StandardScheme;

import org.apache.thrift.scheme.TupleScheme;
import org.apache.thrift.protocol.TTupleProtocol;
import org.apache.thrift.protocol.TProtocolException;
import org.apache.thrift.EncodingUtils;
import org.apache.thrift.TException;
import org.apache.thrift.async.AsyncMethodCallback;
import org.apache.thrift.server.AbstractNonblockingServer.*;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.util.HashMap;
import java.util.EnumMap;
import java.util.Set;
import java.util.HashSet;
import java.util.EnumSet;
import java.util.Collections;
import java.util.BitSet;
import java.nio.ByteBuffer;
import java.util.Arrays;
import javax.annotation.Generated;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

@SuppressWarnings({"cast", "rawtypes", "serial", "unchecked"})
@Generated(value = "Autogenerated by Thrift Compiler (0.9.3)", date = "2019-02-22")
public class SatelliteConfig implements org.apache.thrift.TBase<SatelliteConfig, SatelliteConfig._Fields>, java.io.Serializable, Cloneable, Comparable<SatelliteConfig> {
  private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("SatelliteConfig");

  private static final org.apache.thrift.protocol.TField PAGE_SIZE_FIELD_DESC = new org.apache.thrift.protocol.TField("pageSize", org.apache.thrift.protocol.TType.I32, (short)1);
  private static final org.apache.thrift.protocol.TField DEFAULT_IMAGE_PERMISSIONS_FIELD_DESC = new org.apache.thrift.protocol.TField("defaultImagePermissions", org.apache.thrift.protocol.TType.STRUCT, (short)2);
  private static final org.apache.thrift.protocol.TField DEFAULT_LECTURE_PERMISSIONS_FIELD_DESC = new org.apache.thrift.protocol.TField("defaultLecturePermissions", org.apache.thrift.protocol.TType.STRUCT, (short)3);
  private static final org.apache.thrift.protocol.TField MAX_IMAGE_VALIDITY_DAYS_FIELD_DESC = new org.apache.thrift.protocol.TField("maxImageValidityDays", org.apache.thrift.protocol.TType.I32, (short)4);
  private static final org.apache.thrift.protocol.TField MAX_LECTURE_VALIDITY_DAYS_FIELD_DESC = new org.apache.thrift.protocol.TField("maxLectureValidityDays", org.apache.thrift.protocol.TType.I32, (short)5);
  private static final org.apache.thrift.protocol.TField MAX_TRANSFERS_FIELD_DESC = new org.apache.thrift.protocol.TField("maxTransfers", org.apache.thrift.protocol.TType.I32, (short)6);
  private static final org.apache.thrift.protocol.TField MAX_CONNECTIONS_PER_TRANSFER_FIELD_DESC = new org.apache.thrift.protocol.TField("maxConnectionsPerTransfer", org.apache.thrift.protocol.TType.I32, (short)7);
  private static final org.apache.thrift.protocol.TField MAX_LOCATIONS_PER_LECTURE_FIELD_DESC = new org.apache.thrift.protocol.TField("maxLocationsPerLecture", org.apache.thrift.protocol.TType.I32, (short)8);
  private static final org.apache.thrift.protocol.TField ALLOW_LOGIN_BY_DEFAULT_FIELD_DESC = new org.apache.thrift.protocol.TField("allowLoginByDefault", org.apache.thrift.protocol.TType.BOOL, (short)9);
  private static final org.apache.thrift.protocol.TField SERVER_SIDE_COPY_FIELD_DESC = new org.apache.thrift.protocol.TField("serverSideCopy", org.apache.thrift.protocol.TType.I32, (short)10);

  private static final Map<Class<? extends IScheme>, SchemeFactory> schemes = new HashMap<Class<? extends IScheme>, SchemeFactory>();
  static {
    schemes.put(StandardScheme.class, new SatelliteConfigStandardSchemeFactory());
    schemes.put(TupleScheme.class, new SatelliteConfigTupleSchemeFactory());
  }

  public int pageSize; // required
  public ImagePermissions defaultImagePermissions; // required
  public LecturePermissions defaultLecturePermissions; // required
  public int maxImageValidityDays; // required
  public int maxLectureValidityDays; // required
  public int maxTransfers; // optional
  public int maxConnectionsPerTransfer; // optional
  public int maxLocationsPerLecture; // optional
  public boolean allowLoginByDefault; // optional
  /**
   * 
   * @see SscMode
   */
  public SscMode serverSideCopy; // optional

  /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
  public enum _Fields implements org.apache.thrift.TFieldIdEnum {
    PAGE_SIZE((short)1, "pageSize"),
    DEFAULT_IMAGE_PERMISSIONS((short)2, "defaultImagePermissions"),
    DEFAULT_LECTURE_PERMISSIONS((short)3, "defaultLecturePermissions"),
    MAX_IMAGE_VALIDITY_DAYS((short)4, "maxImageValidityDays"),
    MAX_LECTURE_VALIDITY_DAYS((short)5, "maxLectureValidityDays"),
    MAX_TRANSFERS((short)6, "maxTransfers"),
    MAX_CONNECTIONS_PER_TRANSFER((short)7, "maxConnectionsPerTransfer"),
    MAX_LOCATIONS_PER_LECTURE((short)8, "maxLocationsPerLecture"),
    ALLOW_LOGIN_BY_DEFAULT((short)9, "allowLoginByDefault"),
    /**
     * 
     * @see SscMode
     */
    SERVER_SIDE_COPY((short)10, "serverSideCopy");

    private static final Map<String, _Fields> byName = new HashMap<String, _Fields>();

    static {
      for (_Fields field : EnumSet.allOf(_Fields.class)) {
        byName.put(field.getFieldName(), field);
      }
    }

    /**
     * Find the _Fields constant that matches fieldId, or null if its not found.
     */
    public static _Fields findByThriftId(int fieldId) {
      switch(fieldId) {
        case 1: // PAGE_SIZE
          return PAGE_SIZE;
        case 2: // DEFAULT_IMAGE_PERMISSIONS
          return DEFAULT_IMAGE_PERMISSIONS;
        case 3: // DEFAULT_LECTURE_PERMISSIONS
          return DEFAULT_LECTURE_PERMISSIONS;
        case 4: // MAX_IMAGE_VALIDITY_DAYS
          return MAX_IMAGE_VALIDITY_DAYS;
        case 5: // MAX_LECTURE_VALIDITY_DAYS
          return MAX_LECTURE_VALIDITY_DAYS;
        case 6: // MAX_TRANSFERS
          return MAX_TRANSFERS;
        case 7: // MAX_CONNECTIONS_PER_TRANSFER
          return MAX_CONNECTIONS_PER_TRANSFER;
        case 8: // MAX_LOCATIONS_PER_LECTURE
          return MAX_LOCATIONS_PER_LECTURE;
        case 9: // ALLOW_LOGIN_BY_DEFAULT
          return ALLOW_LOGIN_BY_DEFAULT;
        case 10: // SERVER_SIDE_COPY
          return SERVER_SIDE_COPY;
        default:
          return null;
      }
    }

    /**
     * Find the _Fields constant that matches fieldId, throwing an exception
     * if it is not found.
     */
    public static _Fields findByThriftIdOrThrow(int fieldId) {
      _Fields fields = findByThriftId(fieldId);
      if (fields == null) throw new IllegalArgumentException("Field " + fieldId + " doesn't exist!");
      return fields;
    }

    /**
     * Find the _Fields constant that matches name, or null if its not found.
     */
    public static _Fields findByName(String name) {
      return byName.get(name);
    }

    private final short _thriftId;
    private final String _fieldName;

    _Fields(short thriftId, String fieldName) {
      _thriftId = thriftId;
      _fieldName = fieldName;
    }

    public short getThriftFieldId() {
      return _thriftId;
    }

    public String getFieldName() {
      return _fieldName;
    }
  }

  // isset id assignments
  private static final int __PAGESIZE_ISSET_ID = 0;
  private static final int __MAXIMAGEVALIDITYDAYS_ISSET_ID = 1;
  private static final int __MAXLECTUREVALIDITYDAYS_ISSET_ID = 2;
  private static final int __MAXTRANSFERS_ISSET_ID = 3;
  private static final int __MAXCONNECTIONSPERTRANSFER_ISSET_ID = 4;
  private static final int __MAXLOCATIONSPERLECTURE_ISSET_ID = 5;
  private static final int __ALLOWLOGINBYDEFAULT_ISSET_ID = 6;
  private byte __isset_bitfield = 0;
  private static final _Fields optionals[] = {_Fields.MAX_TRANSFERS,_Fields.MAX_CONNECTIONS_PER_TRANSFER,_Fields.MAX_LOCATIONS_PER_LECTURE,_Fields.ALLOW_LOGIN_BY_DEFAULT,_Fields.SERVER_SIDE_COPY};
  public static final Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap;
  static {
    Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class);
    tmpMap.put(_Fields.PAGE_SIZE, new org.apache.thrift.meta_data.FieldMetaData("pageSize", org.apache.thrift.TFieldRequirementType.DEFAULT, 
        new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I32)));
    tmpMap.put(_Fields.DEFAULT_IMAGE_PERMISSIONS, new org.apache.thrift.meta_data.FieldMetaData("defaultImagePermissions", org.apache.thrift.TFieldRequirementType.DEFAULT, 
        new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, ImagePermissions.class)));
    tmpMap.put(_Fields.DEFAULT_LECTURE_PERMISSIONS, new org.apache.thrift.meta_data.FieldMetaData("defaultLecturePermissions", org.apache.thrift.TFieldRequirementType.DEFAULT, 
        new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, LecturePermissions.class)));
    tmpMap.put(_Fields.MAX_IMAGE_VALIDITY_DAYS, new org.apache.thrift.meta_data.FieldMetaData("maxImageValidityDays", org.apache.thrift.TFieldRequirementType.DEFAULT, 
        new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I32)));
    tmpMap.put(_Fields.MAX_LECTURE_VALIDITY_DAYS, new org.apache.thrift.meta_data.FieldMetaData("maxLectureValidityDays", org.apache.thrift.TFieldRequirementType.DEFAULT, 
        new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I32)));
    tmpMap.put(_Fields.MAX_TRANSFERS, new org.apache.thrift.meta_data.FieldMetaData("maxTransfers", org.apache.thrift.TFieldRequirementType.OPTIONAL, 
        new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I32)));
    tmpMap.put(_Fields.MAX_CONNECTIONS_PER_TRANSFER, new org.apache.thrift.meta_data.FieldMetaData("maxConnectionsPerTransfer", org.apache.thrift.TFieldRequirementType.OPTIONAL, 
        new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I32)));
    tmpMap.put(_Fields.MAX_LOCATIONS_PER_LECTURE, new org.apache.thrift.meta_data.FieldMetaData("maxLocationsPerLecture", org.apache.thrift.TFieldRequirementType.OPTIONAL, 
        new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I32)));
    tmpMap.put(_Fields.ALLOW_LOGIN_BY_DEFAULT, new org.apache.thrift.meta_data.FieldMetaData("allowLoginByDefault", org.apache.thrift.TFieldRequirementType.OPTIONAL, 
        new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.BOOL)));
    tmpMap.put(_Fields.SERVER_SIDE_COPY, new org.apache.thrift.meta_data.FieldMetaData("serverSideCopy", org.apache.thrift.TFieldRequirementType.OPTIONAL, 
        new org.apache.thrift.meta_data.EnumMetaData(org.apache.thrift.protocol.TType.ENUM, SscMode.class)));
    metaDataMap = Collections.unmodifiableMap(tmpMap);
    org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(SatelliteConfig.class, metaDataMap);
  }

  public SatelliteConfig() {
  }

  public SatelliteConfig(
    int pageSize,
    ImagePermissions defaultImagePermissions,
    LecturePermissions defaultLecturePermissions,
    int maxImageValidityDays,
    int maxLectureValidityDays)
  {
    this();
    this.pageSize = pageSize;
    setPageSizeIsSet(true);
    this.defaultImagePermissions = defaultImagePermissions;
    this.defaultLecturePermissions = defaultLecturePermissions;
    this.maxImageValidityDays = maxImageValidityDays;
    setMaxImageValidityDaysIsSet(true);
    this.maxLectureValidityDays = maxLectureValidityDays;
    setMaxLectureValidityDaysIsSet(true);
  }

  /**
   * Performs a deep copy on <i>other</i>.
   */
  public SatelliteConfig(SatelliteConfig other) {
    __isset_bitfield = other.__isset_bitfield;
    this.pageSize = other.pageSize;
    if (other.isSetDefaultImagePermissions()) {
      this.defaultImagePermissions = new ImagePermissions(other.defaultImagePermissions);
    }
    if (other.isSetDefaultLecturePermissions()) {
      this.defaultLecturePermissions = new LecturePermissions(other.defaultLecturePermissions);
    }
    this.maxImageValidityDays = other.maxImageValidityDays;
    this.maxLectureValidityDays = other.maxLectureValidityDays;
    this.maxTransfers = other.maxTransfers;
    this.maxConnectionsPerTransfer = other.maxConnectionsPerTransfer;
    this.maxLocationsPerLecture = other.maxLocationsPerLecture;
    this.allowLoginByDefault = other.allowLoginByDefault;
    if (other.isSetServerSideCopy()) {
      this.serverSideCopy = other.serverSideCopy;
    }
  }

  public SatelliteConfig deepCopy() {
    return new SatelliteConfig(this);
  }

  @Override
  public void clear() {
    setPageSizeIsSet(false);
    this.pageSize = 0;
    this.defaultImagePermissions = null;
    this.defaultLecturePermissions = null;
    setMaxImageValidityDaysIsSet(false);
    this.maxImageValidityDays = 0;
    setMaxLectureValidityDaysIsSet(false);
    this.maxLectureValidityDays = 0;
    setMaxTransfersIsSet(false);
    this.maxTransfers = 0;
    setMaxConnectionsPerTransferIsSet(false);
    this.maxConnectionsPerTransfer = 0;
    setMaxLocationsPerLectureIsSet(false);
    this.maxLocationsPerLecture = 0;
    setAllowLoginByDefaultIsSet(false);
    this.allowLoginByDefault = false;
    this.serverSideCopy = null;
  }

  public int getPageSize() {
    return this.pageSize;
  }

  public SatelliteConfig setPageSize(int pageSize) {
    this.pageSize = pageSize;
    setPageSizeIsSet(true);
    return this;
  }

  public void unsetPageSize() {
    __isset_bitfield = EncodingUtils.clearBit(__isset_bitfield, __PAGESIZE_ISSET_ID);
  }

  /** Returns true if field pageSize is set (has been assigned a value) and false otherwise */
  public boolean isSetPageSize() {
    return EncodingUtils.testBit(__isset_bitfield, __PAGESIZE_ISSET_ID);
  }

  public void setPageSizeIsSet(boolean value) {
    __isset_bitfield = EncodingUtils.setBit(__isset_bitfield, __PAGESIZE_ISSET_ID, value);
  }

  public ImagePermissions getDefaultImagePermissions() {
    return this.defaultImagePermissions;
  }

  public SatelliteConfig setDefaultImagePermissions(ImagePermissions defaultImagePermissions) {
    this.defaultImagePermissions = defaultImagePermissions;
    return this;
  }

  public void unsetDefaultImagePermissions() {
    this.defaultImagePermissions = null;
  }

  /** Returns true if field defaultImagePermissions is set (has been assigned a value) and false otherwise */
  public boolean isSetDefaultImagePermissions() {
    return this.defaultImagePermissions != null;
  }

  public void setDefaultImagePermissionsIsSet(boolean value) {
    if (!value) {
      this.defaultImagePermissions = null;
    }
  }

  public LecturePermissions getDefaultLecturePermissions() {
    return this.defaultLecturePermissions;
  }

  public SatelliteConfig setDefaultLecturePermissions(LecturePermissions defaultLecturePermissions) {
    this.defaultLecturePermissions = defaultLecturePermissions;
    return this;
  }

  public void unsetDefaultLecturePermissions() {
    this.defaultLecturePermissions = null;
  }

  /** Returns true if field defaultLecturePermissions is set (has been assigned a value) and false otherwise */
  public boolean isSetDefaultLecturePermissions() {
    return this.defaultLecturePermissions != null;
  }

  public void setDefaultLecturePermissionsIsSet(boolean value) {
    if (!value) {
      this.defaultLecturePermissions = null;
    }
  }

  public int getMaxImageValidityDays() {
    return this.maxImageValidityDays;
  }

  public SatelliteConfig setMaxImageValidityDays(int maxImageValidityDays) {
    this.maxImageValidityDays = maxImageValidityDays;
    setMaxImageValidityDaysIsSet(true);
    return this;
  }

  public void unsetMaxImageValidityDays() {
    __isset_bitfield = EncodingUtils.clearBit(__isset_bitfield, __MAXIMAGEVALIDITYDAYS_ISSET_ID);
  }

  /** Returns true if field maxImageValidityDays is set (has been assigned a value) and false otherwise */
  public boolean isSetMaxImageValidityDays() {
    return EncodingUtils.testBit(__isset_bitfield, __MAXIMAGEVALIDITYDAYS_ISSET_ID);
  }

  public void setMaxImageValidityDaysIsSet(boolean value) {
    __isset_bitfield = EncodingUtils.setBit(__isset_bitfield, __MAXIMAGEVALIDITYDAYS_ISSET_ID, value);
  }

  public int getMaxLectureValidityDays() {
    return this.maxLectureValidityDays;
  }

  public SatelliteConfig setMaxLectureValidityDays(int maxLectureValidityDays) {
    this.maxLectureValidityDays = maxLectureValidityDays;
    setMaxLectureValidityDaysIsSet(true);
    return this;
  }

  public void unsetMaxLectureValidityDays() {
    __isset_bitfield = EncodingUtils.clearBit(__isset_bitfield, __MAXLECTUREVALIDITYDAYS_ISSET_ID);
  }

  /** Returns true if field maxLectureValidityDays is set (has been assigned a value) and false otherwise */
  public boolean isSetMaxLectureValidityDays() {
    return EncodingUtils.testBit(__isset_bitfield, __MAXLECTUREVALIDITYDAYS_ISSET_ID);
  }

  public void setMaxLectureValidityDaysIsSet(boolean value) {
    __isset_bitfield = EncodingUtils.setBit(__isset_bitfield, __MAXLECTUREVALIDITYDAYS_ISSET_ID, value);
  }

  public int getMaxTransfers() {
    return this.maxTransfers;
  }

  public SatelliteConfig setMaxTransfers(int maxTransfers) {
    this.maxTransfers = maxTransfers;
    setMaxTransfersIsSet(true);
    return this;
  }

  public void unsetMaxTransfers() {
    __isset_bitfield = EncodingUtils.clearBit(__isset_bitfield, __MAXTRANSFERS_ISSET_ID);
  }

  /** Returns true if field maxTransfers is set (has been assigned a value) and false otherwise */
  public boolean isSetMaxTransfers() {
    return EncodingUtils.testBit(__isset_bitfield, __MAXTRANSFERS_ISSET_ID);
  }

  public void setMaxTransfersIsSet(boolean value) {
    __isset_bitfield = EncodingUtils.setBit(__isset_bitfield, __MAXTRANSFERS_ISSET_ID, value);
  }

  public int getMaxConnectionsPerTransfer() {
    return this.maxConnectionsPerTransfer;
  }

  public SatelliteConfig setMaxConnectionsPerTransfer(int maxConnectionsPerTransfer) {
    this.maxConnectionsPerTransfer = maxConnectionsPerTransfer;
    setMaxConnectionsPerTransferIsSet(true);
    return this;
  }

  public void unsetMaxConnectionsPerTransfer() {
    __isset_bitfield = EncodingUtils.clearBit(__isset_bitfield, __MAXCONNECTIONSPERTRANSFER_ISSET_ID);
  }

  /** Returns true if field maxConnectionsPerTransfer is set (has been assigned a value) and false otherwise */
  public boolean isSetMaxConnectionsPerTransfer() {
    return EncodingUtils.testBit(__isset_bitfield, __MAXCONNECTIONSPERTRANSFER_ISSET_ID);
  }

  public void setMaxConnectionsPerTransferIsSet(boolean value) {
    __isset_bitfield = EncodingUtils.setBit(__isset_bitfield, __MAXCONNECTIONSPERTRANSFER_ISSET_ID, value);
  }

  public int getMaxLocationsPerLecture() {
    return this.maxLocationsPerLecture;
  }

  public SatelliteConfig setMaxLocationsPerLecture(int maxLocationsPerLecture) {
    this.maxLocationsPerLecture = maxLocationsPerLecture;
    setMaxLocationsPerLectureIsSet(true);
    return this;
  }

  public void unsetMaxLocationsPerLecture() {
    __isset_bitfield = EncodingUtils.clearBit(__isset_bitfield, __MAXLOCATIONSPERLECTURE_ISSET_ID);
  }

  /** Returns true if field maxLocationsPerLecture is set (has been assigned a value) and false otherwise */
  public boolean isSetMaxLocationsPerLecture() {
    return EncodingUtils.testBit(__isset_bitfield, __MAXLOCATIONSPERLECTURE_ISSET_ID);
  }

  public void setMaxLocationsPerLectureIsSet(boolean value) {
    __isset_bitfield = EncodingUtils.setBit(__isset_bitfield, __MAXLOCATIONSPERLECTURE_ISSET_ID, value);
  }

  public boolean isAllowLoginByDefault() {
    return this.allowLoginByDefault;
  }

  public SatelliteConfig setAllowLoginByDefault(boolean allowLoginByDefault) {
    this.allowLoginByDefault = allowLoginByDefault;
    setAllowLoginByDefaultIsSet(true);
    return this;
  }

  public void unsetAllowLoginByDefault() {
    __isset_bitfield = EncodingUtils.clearBit(__isset_bitfield, __ALLOWLOGINBYDEFAULT_ISSET_ID);
  }

  /** Returns true if field allowLoginByDefault is set (has been assigned a value) and false otherwise */
  public boolean isSetAllowLoginByDefault() {
    return EncodingUtils.testBit(__isset_bitfield, __ALLOWLOGINBYDEFAULT_ISSET_ID);
  }

  public void setAllowLoginByDefaultIsSet(boolean value) {
    __isset_bitfield = EncodingUtils.setBit(__isset_bitfield, __ALLOWLOGINBYDEFAULT_ISSET_ID, value);
  }

  /**
   * 
   * @see SscMode
   */
  public SscMode getServerSideCopy() {
    return this.serverSideCopy;
  }

  /**
   * 
   * @see SscMode
   */
  public SatelliteConfig setServerSideCopy(SscMode serverSideCopy) {
    this.serverSideCopy = serverSideCopy;
    return this;
  }

  public void unsetServerSideCopy() {
    this.serverSideCopy = null;
  }

  /** Returns true if field serverSideCopy is set (has been assigned a value) and false otherwise */
  public boolean isSetServerSideCopy() {
    return this.serverSideCopy != null;
  }

  public void setServerSideCopyIsSet(boolean value) {
    if (!value) {
      this.serverSideCopy = null;
    }
  }

  public void setFieldValue(_Fields field, Object value) {
    switch (field) {
    case PAGE_SIZE:
      if (value == null) {
        unsetPageSize();
      } else {
        setPageSize((Integer)value);
      }
      break;

    case DEFAULT_IMAGE_PERMISSIONS:
      if (value == null) {
        unsetDefaultImagePermissions();
      } else {
        setDefaultImagePermissions((ImagePermissions)value);
      }
      break;

    case DEFAULT_LECTURE_PERMISSIONS:
      if (value == null) {
        unsetDefaultLecturePermissions();
      } else {
        setDefaultLecturePermissions((LecturePermissions)value);
      }
      break;

    case MAX_IMAGE_VALIDITY_DAYS:
      if (value == null) {
        unsetMaxImageValidityDays();
      } else {
        setMaxImageValidityDays((Integer)value);
      }
      break;

    case MAX_LECTURE_VALIDITY_DAYS:
      if (value == null) {
        unsetMaxLectureValidityDays();
      } else {
        setMaxLectureValidityDays((Integer)value);
      }
      break;

    case MAX_TRANSFERS:
      if (value == null) {
        unsetMaxTransfers();
      } else {
        setMaxTransfers((Integer)value);
      }
      break;

    case MAX_CONNECTIONS_PER_TRANSFER:
      if (value == null) {
        unsetMaxConnectionsPerTransfer();
      } else {
        setMaxConnectionsPerTransfer((Integer)value);
      }
      break;

    case MAX_LOCATIONS_PER_LECTURE:
      if (value == null) {
        unsetMaxLocationsPerLecture();
      } else {
        setMaxLocationsPerLecture((Integer)value);
      }
      break;

    case ALLOW_LOGIN_BY_DEFAULT:
      if (value == null) {
        unsetAllowLoginByDefault();
      } else {
        setAllowLoginByDefault((Boolean)value);
      }
      break;

    case SERVER_SIDE_COPY:
      if (value == null) {
        unsetServerSideCopy();
      } else {
        setServerSideCopy((SscMode)value);
      }
      break;

    }
  }

  public Object getFieldValue(_Fields field) {
    switch (field) {
    case PAGE_SIZE:
      return getPageSize();

    case DEFAULT_IMAGE_PERMISSIONS:
      return getDefaultImagePermissions();

    case DEFAULT_LECTURE_PERMISSIONS:
      return getDefaultLecturePermissions();

    case MAX_IMAGE_VALIDITY_DAYS:
      return getMaxImageValidityDays();

    case MAX_LECTURE_VALIDITY_DAYS:
      return getMaxLectureValidityDays();

    case MAX_TRANSFERS:
      return getMaxTransfers();

    case MAX_CONNECTIONS_PER_TRANSFER:
      return getMaxConnectionsPerTransfer();

    case MAX_LOCATIONS_PER_LECTURE:
      return getMaxLocationsPerLecture();

    case ALLOW_LOGIN_BY_DEFAULT:
      return isAllowLoginByDefault();

    case SERVER_SIDE_COPY:
      return getServerSideCopy();

    }
    throw new IllegalStateException();
  }

  /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */
  public boolean isSet(_Fields field) {
    if (field == null) {
      throw new IllegalArgumentException();
    }

    switch (field) {
    case PAGE_SIZE:
      return isSetPageSize();
    case DEFAULT_IMAGE_PERMISSIONS:
      return isSetDefaultImagePermissions();
    case DEFAULT_LECTURE_PERMISSIONS:
      return isSetDefaultLecturePermissions();
    case MAX_IMAGE_VALIDITY_DAYS:
      return isSetMaxImageValidityDays();
    case MAX_LECTURE_VALIDITY_DAYS:
      return isSetMaxLectureValidityDays();
    case MAX_TRANSFERS:
      return isSetMaxTransfers();
    case MAX_CONNECTIONS_PER_TRANSFER:
      return isSetMaxConnectionsPerTransfer();
    case MAX_LOCATIONS_PER_LECTURE:
      return isSetMaxLocationsPerLecture();
    case ALLOW_LOGIN_BY_DEFAULT:
      return isSetAllowLoginByDefault();
    case SERVER_SIDE_COPY:
      return isSetServerSideCopy();
    }
    throw new IllegalStateException();
  }

  @Override
  public boolean equals(Object that) {
    if (that == null)
      return false;
    if (that instanceof SatelliteConfig)
      return this.equals((SatelliteConfig)that);
    return false;
  }

  public boolean equals(SatelliteConfig that) {
    if (that == null)
      return false;

    boolean this_present_pageSize = true;
    boolean that_present_pageSize = true;
    if (this_present_pageSize || that_present_pageSize) {
      if (!(this_present_pageSize && that_present_pageSize))
        return false;
      if (this.pageSize != that.pageSize)
        return false;
    }

    boolean this_present_defaultImagePermissions = true && this.isSetDefaultImagePermissions();
    boolean that_present_defaultImagePermissions = true && that.isSetDefaultImagePermissions();
    if (this_present_defaultImagePermissions || that_present_defaultImagePermissions) {
      if (!(this_present_defaultImagePermissions && that_present_defaultImagePermissions))
        return false;
      if (!this.defaultImagePermissions.equals(that.defaultImagePermissions))
        return false;
    }

    boolean this_present_defaultLecturePermissions = true && this.isSetDefaultLecturePermissions();
    boolean that_present_defaultLecturePermissions = true && that.isSetDefaultLecturePermissions();
    if (this_present_defaultLecturePermissions || that_present_defaultLecturePermissions) {
      if (!(this_present_defaultLecturePermissions && that_present_defaultLecturePermissions))
        return false;
      if (!this.defaultLecturePermissions.equals(that.defaultLecturePermissions))
        return false;
    }

    boolean this_present_maxImageValidityDays = true;
    boolean that_present_maxImageValidityDays = true;
    if (this_present_maxImageValidityDays || that_present_maxImageValidityDays) {
      if (!(this_present_maxImageValidityDays && that_present_maxImageValidityDays))
        return false;
      if (this.maxImageValidityDays != that.maxImageValidityDays)
        return false;
    }

    boolean this_present_maxLectureValidityDays = true;
    boolean that_present_maxLectureValidityDays = true;
    if (this_present_maxLectureValidityDays || that_present_maxLectureValidityDays) {
      if (!(this_present_maxLectureValidityDays && that_present_maxLectureValidityDays))
        return false;
      if (this.maxLectureValidityDays != that.maxLectureValidityDays)
        return false;
    }

    boolean this_present_maxTransfers = true && this.isSetMaxTransfers();
    boolean that_present_maxTransfers = true && that.isSetMaxTransfers();
    if (this_present_maxTransfers || that_present_maxTransfers) {
      if (!(this_present_maxTransfers && that_present_maxTransfers))
        return false;
      if (this.maxTransfers != that.maxTransfers)
        return false;
    }

    boolean this_present_maxConnectionsPerTransfer = true && this.isSetMaxConnectionsPerTransfer();
    boolean that_present_maxConnectionsPerTransfer = true && that.isSetMaxConnectionsPerTransfer();
    if (this_present_maxConnectionsPerTransfer || that_present_maxConnectionsPerTransfer) {
      if (!(this_present_maxConnectionsPerTransfer && that_present_maxConnectionsPerTransfer))
        return false;
      if (this.maxConnectionsPerTransfer != that.maxConnectionsPerTransfer)
        return false;
    }

    boolean this_present_maxLocationsPerLecture = true && this.isSetMaxLocationsPerLecture();
    boolean that_present_maxLocationsPerLecture = true && that.isSetMaxLocationsPerLecture();
    if (this_present_maxLocationsPerLecture || that_present_maxLocationsPerLecture) {
      if (!(this_present_maxLocationsPerLecture && that_present_maxLocationsPerLecture))
        return false;
      if (this.maxLocationsPerLecture != that.maxLocationsPerLecture)
        return false;
    }

    boolean this_present_allowLoginByDefault = true && this.isSetAllowLoginByDefault();
    boolean that_present_allowLoginByDefault = true && that.isSetAllowLoginByDefault();
    if (this_present_allowLoginByDefault || that_present_allowLoginByDefault) {
      if (!(this_present_allowLoginByDefault && that_present_allowLoginByDefault))
        return false;
      if (this.allowLoginByDefault != that.allowLoginByDefault)
        return false;
    }

    boolean this_present_serverSideCopy = true && this.isSetServerSideCopy();
    boolean that_present_serverSideCopy = true && that.isSetServerSideCopy();
    if (this_present_serverSideCopy || that_present_serverSideCopy) {
      if (!(this_present_serverSideCopy && that_present_serverSideCopy))
        return false;
      if (!this.serverSideCopy.equals(that.serverSideCopy))
        return false;
    }

    return true;
  }

  @Override
  public int hashCode() {
    List<Object> list = new ArrayList<Object>();

    boolean present_pageSize = true;
    list.add(present_pageSize);
    if (present_pageSize)
      list.add(pageSize);

    boolean present_defaultImagePermissions = true && (isSetDefaultImagePermissions());
    list.add(present_defaultImagePermissions);
    if (present_defaultImagePermissions)
      list.add(defaultImagePermissions);

    boolean present_defaultLecturePermissions = true && (isSetDefaultLecturePermissions());
    list.add(present_defaultLecturePermissions);
    if (present_defaultLecturePermissions)
      list.add(defaultLecturePermissions);

    boolean present_maxImageValidityDays = true;
    list.add(present_maxImageValidityDays);
    if (present_maxImageValidityDays)
      list.add(maxImageValidityDays);

    boolean present_maxLectureValidityDays = true;
    list.add(present_maxLectureValidityDays);
    if (present_maxLectureValidityDays)
      list.add(maxLectureValidityDays);

    boolean present_maxTransfers = true && (isSetMaxTransfers());
    list.add(present_maxTransfers);
    if (present_maxTransfers)
      list.add(maxTransfers);

    boolean present_maxConnectionsPerTransfer = true && (isSetMaxConnectionsPerTransfer());
    list.add(present_maxConnectionsPerTransfer);
    if (present_maxConnectionsPerTransfer)
      list.add(maxConnectionsPerTransfer);

    boolean present_maxLocationsPerLecture = true && (isSetMaxLocationsPerLecture());
    list.add(present_maxLocationsPerLecture);
    if (present_maxLocationsPerLecture)
      list.add(maxLocationsPerLecture);

    boolean present_allowLoginByDefault = true && (isSetAllowLoginByDefault());
    list.add(present_allowLoginByDefault);
    if (present_allowLoginByDefault)
      list.add(allowLoginByDefault);

    boolean present_serverSideCopy = true && (isSetServerSideCopy());
    list.add(present_serverSideCopy);
    if (present_serverSideCopy)
      list.add(serverSideCopy.getValue());

    return list.hashCode();
  }

  @Override
  public int compareTo(SatelliteConfig other) {
    if (!getClass().equals(other.getClass())) {
      return getClass().getName().compareTo(other.getClass().getName());
    }

    int lastComparison = 0;

    lastComparison = Boolean.valueOf(isSetPageSize()).compareTo(other.isSetPageSize());
    if (lastComparison != 0) {
      return lastComparison;
    }
    if (isSetPageSize()) {
      lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.pageSize, other.pageSize);
      if (lastComparison != 0) {
        return lastComparison;
      }
    }
    lastComparison = Boolean.valueOf(isSetDefaultImagePermissions()).compareTo(other.isSetDefaultImagePermissions());
    if (lastComparison != 0) {
      return lastComparison;
    }
    if (isSetDefaultImagePermissions()) {
      lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.defaultImagePermissions, other.defaultImagePermissions);
      if (lastComparison != 0) {
        return lastComparison;
      }
    }
    lastComparison = Boolean.valueOf(isSetDefaultLecturePermissions()).compareTo(other.isSetDefaultLecturePermissions());
    if (lastComparison != 0) {
      return lastComparison;
    }
    if (isSetDefaultLecturePermissions()) {
      lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.defaultLecturePermissions, other.defaultLecturePermissions);
      if (lastComparison != 0) {
        return lastComparison;
      }
    }
    lastComparison = Boolean.valueOf(isSetMaxImageValidityDays()).compareTo(other.isSetMaxImageValidityDays());
    if (lastComparison != 0) {
      return lastComparison;
    }
    if (isSetMaxImageValidityDays()) {
      lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.maxImageValidityDays, other.maxImageValidityDays);
      if (lastComparison != 0) {
        return lastComparison;
      }
    }
    lastComparison = Boolean.valueOf(isSetMaxLectureValidityDays()).compareTo(other.isSetMaxLectureValidityDays());
    if (lastComparison != 0) {
      return lastComparison;
    }
    if (isSetMaxLectureValidityDays()) {
      lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.maxLectureValidityDays, other.maxLectureValidityDays);
      if (lastComparison != 0) {
        return lastComparison;
      }
    }
    lastComparison = Boolean.valueOf(isSetMaxTransfers()).compareTo(other.isSetMaxTransfers());
    if (lastComparison != 0) {
      return lastComparison;
    }
    if (isSetMaxTransfers()) {
      lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.maxTransfers, other.maxTransfers);
      if (lastComparison != 0) {
        return lastComparison;
      }
    }
    lastComparison = Boolean.valueOf(isSetMaxConnectionsPerTransfer()).compareTo(other.isSetMaxConnectionsPerTransfer());
    if (lastComparison != 0) {
      return lastComparison;
    }
    if (isSetMaxConnectionsPerTransfer()) {
      lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.maxConnectionsPerTransfer, other.maxConnectionsPerTransfer);
      if (lastComparison != 0) {
        return lastComparison;
      }
    }
    lastComparison = Boolean.valueOf(isSetMaxLocationsPerLecture()).compareTo(other.isSetMaxLocationsPerLecture());
    if (lastComparison != 0) {
      return lastComparison;
    }
    if (isSetMaxLocationsPerLecture()) {
      lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.maxLocationsPerLecture, other.maxLocationsPerLecture);
      if (lastComparison != 0) {
        return lastComparison;
      }
    }
    lastComparison = Boolean.valueOf(isSetAllowLoginByDefault()).compareTo(other.isSetAllowLoginByDefault());
    if (lastComparison != 0) {
      return lastComparison;
    }
    if (isSetAllowLoginByDefault()) {
      lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.allowLoginByDefault, other.allowLoginByDefault);
      if (lastComparison != 0) {
        return lastComparison;
      }
    }
    lastComparison = Boolean.valueOf(isSetServerSideCopy()).compareTo(other.isSetServerSideCopy());
    if (lastComparison != 0) {
      return lastComparison;
    }
    if (isSetServerSideCopy()) {
      lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.serverSideCopy, other.serverSideCopy);
      if (lastComparison != 0) {
        return lastComparison;
      }
    }
    return 0;
  }

  public _Fields fieldForId(int fieldId) {
    return _Fields.findByThriftId(fieldId);
  }

  public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException {
    schemes.get(iprot.getScheme()).getScheme().read(iprot, this);
  }

  public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException {
    schemes.get(oprot.getScheme()).getScheme().write(oprot, this);
  }

  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder("SatelliteConfig(");
    boolean first = true;

    sb.append("pageSize:");
    sb.append(this.pageSize);
    first = false;
    if (!first) sb.append(", ");
    sb.append("defaultImagePermissions:");
    if (this.defaultImagePermissions == null) {
      sb.append("null");
    } else {
      sb.append(this.defaultImagePermissions);
    }
    first = false;
    if (!first) sb.append(", ");
    sb.append("defaultLecturePermissions:");
    if (this.defaultLecturePermissions == null) {
      sb.append("null");
    } else {
      sb.append(this.defaultLecturePermissions);
    }
    first = false;
    if (!first) sb.append(", ");
    sb.append("maxImageValidityDays:");
    sb.append(this.maxImageValidityDays);
    first = false;
    if (!first) sb.append(", ");
    sb.append("maxLectureValidityDays:");
    sb.append(this.maxLectureValidityDays);
    first = false;
    if (isSetMaxTransfers()) {
      if (!first) sb.append(", ");
      sb.append("maxTransfers:");
      sb.append(this.maxTransfers);
      first = false;
    }
    if (isSetMaxConnectionsPerTransfer()) {
      if (!first) sb.append(", ");
      sb.append("maxConnectionsPerTransfer:");
      sb.append(this.maxConnectionsPerTransfer);
      first = false;
    }
    if (isSetMaxLocationsPerLecture()) {
      if (!first) sb.append(", ");
      sb.append("maxLocationsPerLecture:");
      sb.append(this.maxLocationsPerLecture);
      first = false;
    }
    if (isSetAllowLoginByDefault()) {
      if (!first) sb.append(", ");
      sb.append("allowLoginByDefault:");
      sb.append(this.allowLoginByDefault);
      first = false;
    }
    if (isSetServerSideCopy()) {
      if (!first) sb.append(", ");
      sb.append("serverSideCopy:");
      if (this.serverSideCopy == null) {
        sb.append("null");
      } else {
        sb.append(this.serverSideCopy);
      }
      first = false;
    }
    sb.append(")");
    return sb.toString();
  }

  public void validate() throws org.apache.thrift.TException {
    // check for required fields
    // check for sub-struct validity
    if (defaultImagePermissions != null) {
      defaultImagePermissions.validate();
    }
    if (defaultLecturePermissions != null) {
      defaultLecturePermissions.validate();
    }
  }

  private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOException {
    try {
      write(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(out)));
    } catch (org.apache.thrift.TException te) {
      throw new java.io.IOException(te);
    }
  }

  private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
    try {
      // it doesn't seem like you should have to do this, but java serialization is wacky, and doesn't call the default constructor.
      __isset_bitfield = 0;
      read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
    } catch (org.apache.thrift.TException te) {
      throw new java.io.IOException(te);
    }
  }

  private static class SatelliteConfigStandardSchemeFactory implements SchemeFactory {
    public SatelliteConfigStandardScheme getScheme() {
      return new SatelliteConfigStandardScheme();
    }
  }

  private static class SatelliteConfigStandardScheme extends StandardScheme<SatelliteConfig> {

    public void read(org.apache.thrift.protocol.TProtocol iprot, SatelliteConfig 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: // PAGE_SIZE
            if (schemeField.type == org.apache.thrift.protocol.TType.I32) {
              struct.pageSize = iprot.readI32();
              struct.setPageSizeIsSet(true);
            } else { 
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
            }
            break;
          case 2: // DEFAULT_IMAGE_PERMISSIONS
            if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
              struct.defaultImagePermissions = new ImagePermissions();
              struct.defaultImagePermissions.read(iprot);
              struct.setDefaultImagePermissionsIsSet(true);
            } else { 
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
            }
            break;
          case 3: // DEFAULT_LECTURE_PERMISSIONS
            if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
              struct.defaultLecturePermissions = new LecturePermissions();
              struct.defaultLecturePermissions.read(iprot);
              struct.setDefaultLecturePermissionsIsSet(true);
            } else { 
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
            }
            break;
          case 4: // MAX_IMAGE_VALIDITY_DAYS
            if (schemeField.type == org.apache.thrift.protocol.TType.I32) {
              struct.maxImageValidityDays = iprot.readI32();
              struct.setMaxImageValidityDaysIsSet(true);
            } else { 
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
            }
            break;
          case 5: // MAX_LECTURE_VALIDITY_DAYS
            if (schemeField.type == org.apache.thrift.protocol.TType.I32) {
              struct.maxLectureValidityDays = iprot.readI32();
              struct.setMaxLectureValidityDaysIsSet(true);
            } else { 
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
            }
            break;
          case 6: // MAX_TRANSFERS
            if (schemeField.type == org.apache.thrift.protocol.TType.I32) {
              struct.maxTransfers = iprot.readI32();
              struct.setMaxTransfersIsSet(true);
            } else { 
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
            }
            break;
          case 7: // MAX_CONNECTIONS_PER_TRANSFER
            if (schemeField.type == org.apache.thrift.protocol.TType.I32) {
              struct.maxConnectionsPerTransfer = iprot.readI32();
              struct.setMaxConnectionsPerTransferIsSet(true);
            } else { 
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
            }
            break;
          case 8: // MAX_LOCATIONS_PER_LECTURE
            if (schemeField.type == org.apache.thrift.protocol.TType.I32) {
              struct.maxLocationsPerLecture = iprot.readI32();
              struct.setMaxLocationsPerLectureIsSet(true);
            } else { 
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
            }
            break;
          case 9: // ALLOW_LOGIN_BY_DEFAULT
            if (schemeField.type == org.apache.thrift.protocol.TType.BOOL) {
              struct.allowLoginByDefault = iprot.readBool();
              struct.setAllowLoginByDefaultIsSet(true);
            } else { 
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
            }
            break;
          case 10: // SERVER_SIDE_COPY
            if (schemeField.type == org.apache.thrift.protocol.TType.I32) {
              struct.serverSideCopy = org.openslx.bwlp.thrift.iface.SscMode.findByValue(iprot.readI32());
              struct.setServerSideCopyIsSet(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();
    }

    public void write(org.apache.thrift.protocol.TProtocol oprot, SatelliteConfig struct) throws org.apache.thrift.TException {
      struct.validate();

      oprot.writeStructBegin(STRUCT_DESC);
      oprot.writeFieldBegin(PAGE_SIZE_FIELD_DESC);
      oprot.writeI32(struct.pageSize);
      oprot.writeFieldEnd();
      if (struct.defaultImagePermissions != null) {
        oprot.writeFieldBegin(DEFAULT_IMAGE_PERMISSIONS_FIELD_DESC);
        struct.defaultImagePermissions.write(oprot);
        oprot.writeFieldEnd();
      }
      if (struct.defaultLecturePermissions != null) {
        oprot.writeFieldBegin(DEFAULT_LECTURE_PERMISSIONS_FIELD_DESC);
        struct.defaultLecturePermissions.write(oprot);
        oprot.writeFieldEnd();
      }
      oprot.writeFieldBegin(MAX_IMAGE_VALIDITY_DAYS_FIELD_DESC);
      oprot.writeI32(struct.maxImageValidityDays);
      oprot.writeFieldEnd();
      oprot.writeFieldBegin(MAX_LECTURE_VALIDITY_DAYS_FIELD_DESC);
      oprot.writeI32(struct.maxLectureValidityDays);
      oprot.writeFieldEnd();
      if (struct.isSetMaxTransfers()) {
        oprot.writeFieldBegin(MAX_TRANSFERS_FIELD_DESC);
        oprot.writeI32(struct.maxTransfers);
        oprot.writeFieldEnd();
      }
      if (struct.isSetMaxConnectionsPerTransfer()) {
        oprot.writeFieldBegin(MAX_CONNECTIONS_PER_TRANSFER_FIELD_DESC);
        oprot.writeI32(struct.maxConnectionsPerTransfer);
        oprot.writeFieldEnd();
      }
      if (struct.isSetMaxLocationsPerLecture()) {
        oprot.writeFieldBegin(MAX_LOCATIONS_PER_LECTURE_FIELD_DESC);
        oprot.writeI32(struct.maxLocationsPerLecture);
        oprot.writeFieldEnd();
      }
      if (struct.isSetAllowLoginByDefault()) {
        oprot.writeFieldBegin(ALLOW_LOGIN_BY_DEFAULT_FIELD_DESC);
        oprot.writeBool(struct.allowLoginByDefault);
        oprot.writeFieldEnd();
      }
      if (struct.serverSideCopy != null) {
        if (struct.isSetServerSideCopy()) {
          oprot.writeFieldBegin(SERVER_SIDE_COPY_FIELD_DESC);
          oprot.writeI32(struct.serverSideCopy.getValue());
          oprot.writeFieldEnd();
        }
      }
      oprot.writeFieldStop();
      oprot.writeStructEnd();
    }

  }

  private static class SatelliteConfigTupleSchemeFactory implements SchemeFactory {
    public SatelliteConfigTupleScheme getScheme() {
      return new SatelliteConfigTupleScheme();
    }
  }

  private static class SatelliteConfigTupleScheme extends TupleScheme<SatelliteConfig> {

    @Override
    public void write(org.apache.thrift.protocol.TProtocol prot, SatelliteConfig struct) throws org.apache.thrift.TException {
      TTupleProtocol oprot = (TTupleProtocol) prot;
      BitSet optionals = new BitSet();
      if (struct.isSetPageSize()) {
        optionals.set(0);
      }
      if (struct.isSetDefaultImagePermissions()) {
        optionals.set(1);
      }
      if (struct.isSetDefaultLecturePermissions()) {
        optionals.set(2);
      }
      if (struct.isSetMaxImageValidityDays()) {
        optionals.set(3);
      }
      if (struct.isSetMaxLectureValidityDays()) {
        optionals.set(4);
      }
      if (struct.isSetMaxTransfers()) {
        optionals.set(5);
      }
      if (struct.isSetMaxConnectionsPerTransfer()) {
        optionals.set(6);
      }
      if (struct.isSetMaxLocationsPerLecture()) {
        optionals.set(7);
      }
      if (struct.isSetAllowLoginByDefault()) {
        optionals.set(8);
      }
      if (struct.isSetServerSideCopy()) {
        optionals.set(9);
      }
      oprot.writeBitSet(optionals, 10);
      if (struct.isSetPageSize()) {
        oprot.writeI32(struct.pageSize);
      }
      if (struct.isSetDefaultImagePermissions()) {
        struct.defaultImagePermissions.write(oprot);
      }
      if (struct.isSetDefaultLecturePermissions()) {
        struct.defaultLecturePermissions.write(oprot);
      }
      if (struct.isSetMaxImageValidityDays()) {
        oprot.writeI32(struct.maxImageValidityDays);
      }
      if (struct.isSetMaxLectureValidityDays()) {
        oprot.writeI32(struct.maxLectureValidityDays);
      }
      if (struct.isSetMaxTransfers()) {
        oprot.writeI32(struct.maxTransfers);
      }
      if (struct.isSetMaxConnectionsPerTransfer()) {
        oprot.writeI32(struct.maxConnectionsPerTransfer);
      }
      if (struct.isSetMaxLocationsPerLecture()) {
        oprot.writeI32(struct.maxLocationsPerLecture);
      }
      if (struct.isSetAllowLoginByDefault()) {
        oprot.writeBool(struct.allowLoginByDefault);
      }
      if (struct.isSetServerSideCopy()) {
        oprot.writeI32(struct.serverSideCopy.getValue());
      }
    }

    @Override
    public void read(org.apache.thrift.protocol.TProtocol prot, SatelliteConfig struct) throws org.apache.thrift.TException {
      TTupleProtocol iprot = (TTupleProtocol) prot;
      BitSet incoming = iprot.readBitSet(10);
      if (incoming.get(0)) {
        struct.pageSize = iprot.readI32();
        struct.setPageSizeIsSet(true);
      }
      if (incoming.get(1)) {
        struct.defaultImagePermissions = new ImagePermissions();
        struct.defaultImagePermissions.read(iprot);
        struct.setDefaultImagePermissionsIsSet(true);
      }
      if (incoming.get(2)) {
        struct.defaultLecturePermissions = new LecturePermissions();
        struct.defaultLecturePermissions.read(iprot);
        struct.setDefaultLecturePermissionsIsSet(true);
      }
      if (incoming.get(3)) {
        struct.maxImageValidityDays = iprot.readI32();
        struct.setMaxImageValidityDaysIsSet(true);
      }
      if (incoming.get(4)) {
        struct.maxLectureValidityDays = iprot.readI32();
        struct.setMaxLectureValidityDaysIsSet(true);
      }
      if (incoming.get(5)) {
        struct.maxTransfers = iprot.readI32();
        struct.setMaxTransfersIsSet(true);
      }
      if (incoming.get(6)) {
        struct.maxConnectionsPerTransfer = iprot.readI32();
        struct.setMaxConnectionsPerTransferIsSet(true);
      }
      if (incoming.get(7)) {
        struct.maxLocationsPerLecture = iprot.readI32();
        struct.setMaxLocationsPerLectureIsSet(true);
      }
      if (incoming.get(8)) {
        struct.allowLoginByDefault = iprot.readBool();
        struct.setAllowLoginByDefaultIsSet(true);
      }
      if (incoming.get(9)) {
        struct.serverSideCopy = org.openslx.bwlp.thrift.iface.SscMode.findByValue(iprot.readI32());
        struct.setServerSideCopyIsSet(true);
      }
    }
  }

}