From fae1a1930ec5e76730db3fb0c69114005903dff2 Mon Sep 17 00:00:00 2001 From: Adrian Cole Date: Wed, 9 Jun 2010 13:50:40 -0700 Subject: [PATCH] added multipart form binder --- .../jclouds/rest/annotations/PartParam.java | 52 +++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 core/src/main/java/org/jclouds/rest/annotations/PartParam.java diff --git a/core/src/main/java/org/jclouds/rest/annotations/PartParam.java b/core/src/main/java/org/jclouds/rest/annotations/PartParam.java new file mode 100644 index 0000000000..4b3bf877fe --- /dev/null +++ b/core/src/main/java/org/jclouds/rest/annotations/PartParam.java @@ -0,0 +1,52 @@ +/** + * + * Copyright (C) 2009 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.rest.annotations; + +import static java.lang.annotation.ElementType.PARAMETER; +import static java.lang.annotation.RetentionPolicy.RUNTIME; + +import java.lang.annotation.Retention; +import java.lang.annotation.Target; + +import org.jclouds.http.MultipartForm.Part; + +import com.google.common.base.Function; + +/** + * Designates that this parameter will be bound to a multipart form. + * + * @author Adrian Cole + */ +@Target(PARAMETER) +@Retention(RUNTIME) +public @interface PartParam { + + public static class ALREADY_PART implements Function { + + @Override + public Part apply(Object from) { + return Part.class.cast(from); + } + }; + + /** + * how to convert this to a part. + */ + Class> value() default ALREADY_PART.class; +}