All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jclouds.ultradns.ws.features.DirectionalGroupApi Maven / Gradle / Ivy

The newest version!
/**
 * 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.ultradns.ws.features;

import javax.inject.Named;
import javax.ws.rs.POST;

import org.jclouds.Fallbacks.EmptyFluentIterableOnNotFoundOr404;
import org.jclouds.Fallbacks.NullOnNotFoundOr404;
import org.jclouds.javax.annotation.Nullable;
import org.jclouds.rest.ResourceNotFoundException;
import org.jclouds.rest.annotations.BinderParam;
import org.jclouds.rest.annotations.Fallback;
import org.jclouds.rest.annotations.Payload;
import org.jclouds.rest.annotations.PayloadParam;
import org.jclouds.rest.annotations.RequestFilters;
import org.jclouds.rest.annotations.VirtualHost;
import org.jclouds.rest.annotations.XMLResponseParser;
import org.jclouds.ultradns.ws.binders.DirectionalGroupCoordinatesToXML;
import org.jclouds.ultradns.ws.domain.AccountLevelGroup;
import org.jclouds.ultradns.ws.domain.DirectionalGroup;
import org.jclouds.ultradns.ws.domain.DirectionalGroupCoordinates;
import org.jclouds.ultradns.ws.domain.DirectionalPool.RecordType;
import org.jclouds.ultradns.ws.domain.DirectionalPoolRecordDetail;
import org.jclouds.ultradns.ws.filters.SOAPWrapWithPasswordAuth;
import org.jclouds.ultradns.ws.xml.AccountLevelGroupsHandler;
import org.jclouds.ultradns.ws.xml.DirectionalGroupHandler;
import org.jclouds.ultradns.ws.xml.DirectionalPoolRecordDetailListHandler;
import org.jclouds.ultradns.ws.xml.ItemListHandler;

import com.google.common.collect.FluentIterable;

/**
 * @see 
 * @see 
 * @author Adrian Cole
 */
@RequestFilters(SOAPWrapWithPasswordAuth.class)
@VirtualHost
public interface DirectionalGroupApi {

   /**
    * returns the regions and name of the specified directional group or null,
    * if not found.
    * 
    * @param groupId
    *           the {@link DirectionalGroup#getId() id} of the group
    */
   @Named("getDirectionalDNSGroupDetails")
   @POST
   @XMLResponseParser(DirectionalGroupHandler.class)
   @Fallback(NullOnNotFoundOr404.class)
   @Payload("{GroupId}")
   @Nullable
   DirectionalGroup get(@PayloadParam("GroupId") String groupId);

   /**
    * Returns all account-level groups.
    * 
    */
   @Named("getAccountLevelDirectionalGroupsOfZone")
   @POST
   @XMLResponseParser(AccountLevelGroupsHandler.class)
   @Payload("{accountId}")
   FluentIterable listAccountLevelGroups();

   /**
    * Returns all the directional pool records in the account-level group.
    * 
    * @param groupId
    *           the id of the account-level group containing the records.
    * @throws ResourceNotFoundException
    *            if the group doesn't exist
    */
   @Named("getDirectionalDNSRecordsForAcctLvlGroup")
   @POST
   @XMLResponseParser(DirectionalPoolRecordDetailListHandler.class)
   @Payload("{groupId}")
   FluentIterable listRecordsByAccountLevelGroup(
         @PayloadParam("groupId") String groupId) throws ResourceNotFoundException;

   /**
    * Returns directional group names visible to the account for the fully
    * qualified {@link hostName} and {@link rrType}
    * 
    * @param accountId
    *           the account where the groups exist
    * @param hostName
    *           fully qualified hostname including the trailing dot.
    * @param rrType
    *           {@link RecordType type} value of the existing records.
    * @return empty if there are not groups for the specified host and type
    */
   @Named("getAvailableGroups")
   @POST
   @XMLResponseParser(ItemListHandler.class)
   @Fallback(EmptyFluentIterableOnNotFoundOr404.class)
   @Payload("{hostName}{rrType}{accountId}")
   FluentIterable listGroupNamesByDNameAndType(
         @PayloadParam("hostName") String hostName, @PayloadParam("rrType") int rrType);

   /**
    * Returns all the directional pool records in the pool-level group.
    * 
    * @param group
    *           the zone, record name, record type, and group name
    * @throws ResourceNotFoundException
    *            if the group doesn't exist
    */
   @Named("getDirectionalDNSRecordsForGroup")
   @POST
   @XMLResponseParser(DirectionalPoolRecordDetailListHandler.class)
   @Fallback(EmptyFluentIterableOnNotFoundOr404.class)
   FluentIterable listRecordsByGroupCoordinates(
         @BinderParam(DirectionalGroupCoordinatesToXML.class) DirectionalGroupCoordinates group)
         throws ResourceNotFoundException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy