public InternalRWRAuthStateInvalidatedOperation(OSDRequestDispatcher master) {
   super(master);
   sharedSecret = master.getConfig().getCapabilitySecret();
   localUUID = master.getConfig().getUUID();
 }
Esempio n. 2
0
 public OSDConfig getConfig() {
   return osd.getConfig();
 }
Esempio n. 3
0
 public String getPrimary(String fileId) {
   return osd.getPrimary(fileId);
 }
Esempio n. 4
0
 public void shutdown() {
   osd.shutdown();
   started = false;
 }
Esempio n. 5
0
 public void start() {
   osd.start();
   started = true;
 }
Esempio n. 6
0
 public CheckObjectOperation(OSDRequestDispatcher master) {
   super(master);
   sharedSecret = master.getConfig().getCapabilitySecret();
   localUUID = master.getConfig().getUUID();
 }