Revision fc8b1f79 src/com/rackspace/cloud/android/ContainerObjectDetails.java

b/src/com/rackspace/cloud/android/ContainerObjectDetails.java
852 852
			HttpBundle bundle = null;
853 853
			try {
854 854
				bundle = (new ContainerObjectManager(getContext()))
855
						.deleteObject(containerNames, objects.getCName());
855
						.deleteObject(containerNames, objects.getCName(),otherUser);
856 856
			} catch (CloudServersException e) {
857 857
				exception = e;
858 858
			}
......
905 905
			try {
906 906
				if(arg0.length==1 && arg0[0]!=null)
907 907
					bundle = (new ContainerObjectManager(getContext())).getObject(
908
							containerNames, objects.getCName(),arg0[0]);
908
							containerNames, objects.getCName(),arg0[0], otherUser);
909 909
				else
910 910
					bundle = (new ContainerObjectManager(getContext())).getObject(
911
						containerNames, objects.getCName());
911
						containerNames, objects.getCName(),otherUser);
912 912
			} catch (CloudServersException e) {
913 913
				exception = e;
914 914
			}
......
1235 1235
			write = "write="+write;
1236 1236
			headers.put("X-Object-Sharing", read+";"+write);
1237 1237
		}
1238
		HttpBundle b = new ContainerObjectManager(getApplicationContext()).updateObject(objects.getContainerName(), objects.getCName(), "", null, headers);
1238
		HttpBundle b = new ContainerObjectManager(getApplicationContext()).updateObject(objects.getContainerName(), objects.getCName(), "", null, headers,otherUser);
1239 1239
		Log.i(LOG,"response:"+b.getResponse().getStatusLine().getStatusCode());
1240 1240
		return b;
1241 1241
	}
......
1247 1247
		headers.put("X-Source-Object","/"+objects.getContainerName()+"/"+objects.getCName());
1248 1248
		headers.put("X-Source-Version",version);
1249 1249
		headers.put("Content-Range","bytes 0-/*");
1250
		HttpBundle b = new ContainerObjectManager(getApplicationContext()).updateObject(objects.getContainerName(), objects.getCName(), "", "text/plain; charset=UTF-8", headers);
1250
		HttpBundle b = new ContainerObjectManager(getApplicationContext()).updateObject(objects.getContainerName(), objects.getCName(), "", "text/plain; charset=UTF-8", headers,otherUser);
1251 1251
		Log.i(LOG,"response:"+b.getResponse().getStatusLine().getStatusCode());
1252 1252
		return b;
1253 1253
	}

Also available in: Unified diff