Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Updated Cloud Files examples for 1.7.3
- Loading branch information
Jeremy Daggett
authored and
Everett Toews
committed
Jun 10, 2014
1 parent
fb328b5
commit 0347a90e26f2829ef2574eff63638f044b3134c9
Showing
12 changed files
with
135 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -0,0 +1,82 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
package org.jclouds.examples.rackspace.cloudfiles; | ||
|
||
import static org.jclouds.examples.rackspace.cloudfiles.Constants.CONTAINER; | ||
import static org.jclouds.examples.rackspace.cloudfiles.Constants.PROVIDER; | ||
import static org.jclouds.examples.rackspace.cloudfiles.Constants.REGION; | ||
|
||
import java.io.Closeable; | ||
import java.io.IOException; | ||
|
||
import org.jclouds.ContextBuilder; | ||
import org.jclouds.openstack.swift.v1.domain.Container; | ||
import org.jclouds.rackspace.cloudfiles.v1.CloudFilesApi; | ||
|
||
import com.google.common.io.Closeables; | ||
|
||
/** | ||
* Create a Cloud Files container with some metadata associated with it. | ||
* | ||
* @author Everett Toews | ||
* @author Jeremy Daggett | ||
*/ | ||
public class GetContainer implements Closeable { | ||
private final CloudFilesApi cloudFiles; | ||
|
||
/** | ||
* To get a username and API key see http://jclouds.apache.org/guides/rackspace/ | ||
* | ||
* The first argument (args[0]) must be your username | ||
* The second argument (args[1]) must be your API key | ||
*/ | ||
public static void main(String[] args) throws IOException { | ||
GetContainer getContainer = new GetContainer(args[0], args[1]); | ||
|
||
try { | ||
getContainer.getContainer(); | ||
} | ||
catch (Exception e) { | ||
e.printStackTrace(); | ||
} | ||
finally { | ||
getContainer.close(); | ||
} | ||
} | ||
|
||
public GetContainer(String username, String apiKey) { | ||
cloudFiles = ContextBuilder.newBuilder(PROVIDER) | ||
.credentials(username, apiKey) | ||
.buildApi(CloudFilesApi.class); | ||
} | ||
|
||
private void getContainer() { | ||
System.out.format("Get Container%n"); | ||
|
||
Container container = cloudFiles.getContainerApiForRegion(REGION).get(CONTAINER); | ||
System.out.format(" %s%n", container); | ||
} | ||
|
||
/** | ||
* Always close your service when you're done with it. | ||
*/ | ||
public void close() throws IOException { | ||
Closeables.close(cloudFiles, true); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters