geomacy commented on this pull request.


> + * (if needed):
+ * <p/>
+ * <code>
+ * import static org.jclouds.ec2.options.RouteTableOptions.Builder.*
+ * <p/>
+ * EC2Api connection = // get connection
+ * RouteTable table = 
connection.getRouteTableApi().get().createRouteTable(vpcId, dryRun());
+ * <code>
+ *
+ * @see <a
+ * 
href="http://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateRouteTable.html";
+ * />
+ */
+public class RouteTableOptions extends BaseEC2RequestOptions {
+
+   public static final RouteTableOptions NONE = new RouteTableOptions();

Here I was copying the pattern used in other classes, but `NONE` is probably 
not needed, especially since I've tried to provide the operation methods in 
each appropriate case with two overloads - one with options, one without. I'll 
get rid of it.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/1100#discussion_r116925763

Reply via email to