String provider = "cloudfiles-us";
String username = args[0];
String apiKey = args[1];
BlobStoreContext context = ContextBuilder.newBuilder(provider)
.credentials(username, apiKey)
.buildView(BlobStoreContext.class);
storage = context.getBlobStore();
swift = context.unwrap();
}