Restore old version of postCloudSite for the OOF homing
code.
Change-Id: Ic20895730952975476544ede6e677948e88998a9
Issue-ID: SO-2940
Signed-off-by: Eric Multanen <eric.w.multanen@intel.com>
(cherry picked from commit 
06c00b7e1f74f0b793731983bc11fe79541a2b16)
 
             getCloudsite = Optional.ofNullable(client.getCloudSite(cloudSite.getId(), endpoint + "/cloudSite/"))
                     .orElse(new CloudSite());
             if (!cloudSite.getId().equals(getCloudsite.getId())) {
-                client.postCloudSite(cloudSite);
+                client.postOofHomingCloudSite(cloudSite);
                 logger.debug("Did not findd cloudsite : {}", cloudSite.getId());
                 logger.debug("Will create cloudSite: {}", cloudSite.toString());
             } else {
 
         return this.getSingleResource(cloudSiteClient, getUri(uri + id));
     }
 
+    // Bring back old version of methind since the caller - OofInfraUtils.java - is not running in a spring context
+    public void postOofHomingCloudSite(CloudSite cloudSite) {
+        this.postSingleResource(cloudSiteClient, cloudSite);
+    }
+
     public CloudSite postCloudSite(CloudSite cloudSite) {
         if (cloudSite == null) {
             throw new EntityNotFoundException("CloudSite passed as null");