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

org.jclouds.aws.ec2.options.internal.BaseEC2RequestOptions Maven / Gradle / Ivy

The newest version!
/**
 *
 * Copyright (C) 2010 Cloud Conscious, LLC. 
 *
 * ====================================================================
 * Licensed 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.aws.ec2.options.internal;

import static com.google.common.base.Preconditions.checkNotNull;

import java.util.Set;

import org.jclouds.http.options.BaseHttpRequestOptions;

import com.google.common.base.Predicate;
import com.google.common.collect.Iterables;
import com.google.common.collect.Sets;

/**
 * 
 * @author Adrian Cole
 */
public class BaseEC2RequestOptions extends BaseHttpRequestOptions {

   protected void indexFormValuesWithPrefix(String prefix, String... values) {
      for (int i = 0; i < values.length; i++) {
         formParameters.put(prefix + "." + (i + 1), checkNotNull(values[i], prefix.toLowerCase()
                  + "s[" + i + "]"));
      }
   }

   protected void indexFormValuesWithPrefix(String prefix, Iterable values) {
      indexFormValuesWithPrefix(prefix, Iterables.toArray(values, String.class));
   }

   protected Set getFormValuesWithKeysPrefixedBy(final String prefix) {
      Set values = Sets.newLinkedHashSet();
      for (String key : Iterables.filter(formParameters.keySet(), new Predicate() {

         public boolean apply(String input) {
            return input.startsWith(prefix);
         }

      })) {
         values.add(formParameters.get(key).iterator().next());

      }
      return values;
   }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy