Exemple #1
0
        private void readOTSettings()
        {
            OTSettings ots = OTUtils.getOTCSValueUnAuthorized <OTSettings>(settingsRHURL);

            if (ots != null)
            {
                settingsIsValid = true;
                this.otSettings = ots;
            }
            else
            {
                settingsIsValid = false;
                this.otSettings = null;
            }
        }
Exemple #2
0
 private void readOTSettings()
 {
     OTSettings ots = OTUtils.getOTCSValueUnAuthorized<OTSettings>(settingsRHURL);
     if (ots != null)
     {
         settingsIsValid = true;
         this.otSettings = ots;
     }
     else
     {
         settingsIsValid = false;
         this.otSettings = null;
     }
 }