Package org.jclouds.examples.rackspace.clouddns

Source Code of org.jclouds.examples.rackspace.clouddns.UpdateDomains

/**
* Licensed to jclouds, Inc. (jclouds) under one or more
* contributor license agreements.  See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership.  jclouds 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.clouddns;

import static com.google.common.io.Closeables.closeQuietly;
import static org.jclouds.examples.rackspace.clouddns.Constants.ALT_NAME;
import static org.jclouds.examples.rackspace.clouddns.Constants.GET_DOMAIN_ID;
import static org.jclouds.examples.rackspace.clouddns.Constants.NAME;
import static org.jclouds.rackspace.clouddns.v1.predicates.JobPredicates.awaitComplete;

import java.io.Closeable;
import java.util.concurrent.TimeoutException;

import org.jclouds.ContextBuilder;
import org.jclouds.rackspace.clouddns.v1.CloudDNSApi;
import org.jclouds.rackspace.clouddns.v1.domain.Domain;
import org.jclouds.rackspace.clouddns.v1.domain.UpdateDomain;

import com.google.common.collect.Iterables;

/**
* This example updates a domain.
* @author Everett Toews
*/
public class UpdateDomains implements Closeable {
   private CloudDNSApi dnsApi;

   /**
    * To get a username and API key see http://www.jclouds.org/documentation/quickstart/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) {
      UpdateDomains updateDomains = new UpdateDomains();

      try {
         updateDomains.init(args);
         updateDomains.updateDomain();
         updateDomains.updateDomains();
      }
      catch (Exception e) {
         e.printStackTrace();
      }
      finally {
         updateDomains.close();
      }
   }

   private void init(String[] args) {
      // The provider configures jclouds To use the Rackspace Cloud (US)
      // To use the Rackspace Cloud (UK) set the provider to "rackspace-clouddns-uk"
      String provider = "rackspace-clouddns-us";

      String username = args[0];
      String apiKey = args[1];

      dnsApi = ContextBuilder.newBuilder(provider)
            .credentials(username, apiKey)
            .buildApi(CloudDNSApi.class);
   }

   private void updateDomain() throws TimeoutException {
      System.out.println("Update Domain");
     
      int domainId = 0;

      Iterable<Domain> domains = dnsApi.getDomainApi().list().concat();
     
      for (Domain domain: domains) {
         if (domain.getName().equals(ALT_NAME)) {
            domainId = domain.getId();
         }
      }
     
      UpdateDomain updateDomain = UpdateDomain.builder()
            .email("jcloudie@" + ALT_NAME)
            .ttl(600001)
            .comment("Hello Domain Update")
            .build();

      awaitComplete(dnsApi, dnsApi.getDomainApi().update(domainId, updateDomain));
     
      System.out.println("  " + dnsApi.getDomainApi().get(domainId));
   }

   private void updateDomains() throws TimeoutException {
      System.out.println("Update Domains");
     
      Iterable<Domain> domains = dnsApi.getDomainApi().list().concat();
      Iterable<Integer> domainIds = Iterables.transform(domains, GET_DOMAIN_ID);
     
      awaitComplete(dnsApi, dnsApi.getDomainApi().updateEmail(domainIds, "jclouder@" + NAME));
     
      domains = dnsApi.getDomainApi().list().concat();
     
      for (Domain domain: domains) {
         System.out.println("  " + domain);
      }
   }
  
   /**
    * Always close your service when you're done with it.
    */
   public void close() {
      closeQuietly(dnsApi);
   }
}
TOP

Related Classes of org.jclouds.examples.rackspace.clouddns.UpdateDomains

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.