Re: [jclouds-labs] JCLOUDS-985: Add members API (#196)

2015-08-21 Thread Christopher Dancy
+ +@AutoValue +public abstract class CreateMember { + + @Nullable + public abstract String name(); + + public abstract ListString peerURLs(); + + public abstract ListString clientURLs(); + + CreateMember() { + } + + @SerializedNames({ name, peerURLs, clientURLs }) +

Re: [jclouds-labs] JCLOUDS-985: Add members API (#196)

2015-08-21 Thread Zack Shoylev
+import com.google.auto.value.AutoValue; +import com.google.common.collect.ImmutableList; + +@AutoValue +public abstract class Member { + + public abstract String id(); + + @Nullable + public abstract String name(); + + public abstract ListString peerURLs(); + + public

Re: [jclouds-labs] JCLOUDS-985: Add members API (#196)

2015-08-21 Thread Ignasi Barrera
+import com.google.auto.value.AutoValue; +import com.google.common.collect.ImmutableList; + +@AutoValue +public abstract class Member { + + public abstract String id(); + + @Nullable + public abstract String name(); + + public abstract ListString peerURLs(); + + public

Re: [jclouds-labs] JCLOUDS-985: Add members API (#196)

2015-08-21 Thread Christopher Dancy
+ +@AutoValue +public abstract class CreateMember { + + @Nullable + public abstract String name(); + + public abstract ListString peerURLs(); + + public abstract ListString clientURLs(); + + CreateMember() { + } + + @SerializedNames({ name, peerURLs, clientURLs }) +

Re: [jclouds-labs] JCLOUDS-985: Add members API (#196)

2015-08-21 Thread Zack Shoylev
+ +@AutoValue +public abstract class CreateMember { + + @Nullable + public abstract String name(); + + public abstract ListString peerURLs(); + + public abstract ListString clientURLs(); + + CreateMember() { + } + + @SerializedNames({ name, peerURLs, clientURLs }) +

Re: [jclouds-labs] JCLOUDS-985: Add members API (#196)

2015-08-21 Thread Ignasi Barrera
+ +@AutoValue +public abstract class CreateMember { + + @Nullable + public abstract String name(); + + public abstract ListString peerURLs(); + + public abstract ListString clientURLs(); + + CreateMember() { + } + + @SerializedNames({ name, peerURLs, clientURLs }) +

Re: [jclouds-labs] JCLOUDS-985: Add members API (#196)

2015-08-21 Thread Zack Shoylev
+import com.google.auto.value.AutoValue; +import com.google.common.collect.ImmutableList; + +@AutoValue +public abstract class Member { + + public abstract String id(); + + @Nullable + public abstract String name(); + + public abstract ListString peerURLs(); + + public

Re: [jclouds-labs] JCLOUDS-985: Add members API (#196)

2015-08-21 Thread Zack Shoylev
+import com.google.auto.value.AutoValue; +import com.google.common.collect.ImmutableList; + +@AutoValue +public abstract class Member { + + public abstract String id(); + + @Nullable + public abstract String name(); + + public abstract ListString peerURLs(); + + public

Re: [jclouds-labs] JCLOUDS-985: Add members API (#196)

2015-08-21 Thread Christopher Dancy
+import com.google.auto.value.AutoValue; +import com.google.common.collect.ImmutableList; + +@AutoValue +public abstract class Member { + + public abstract String id(); + + @Nullable + public abstract String name(); + + public abstract ListString peerURLs(); + + public

Re: [jclouds-labs] JCLOUDS-985: Add members API (#196)

2015-08-21 Thread Zack Shoylev
+ +@AutoValue +public abstract class CreateMember { + + @Nullable + public abstract String name(); + + public abstract ListString peerURLs(); + + public abstract ListString clientURLs(); + + CreateMember() { + } + + @SerializedNames({ name, peerURLs, clientURLs }) +

Re: [jclouds] JCLOUDS-826: Remove filesystem (#846)

2015-08-21 Thread Zack Shoylev
Closed #846. --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/846#event-388780327

Re: [jclouds] JCLOUDS-826: Remove filesystem (#846)

2015-08-21 Thread Zack Shoylev
Thank you all for the feedback! With the (big) exception of managing existing files, I think a drop-in replacement should be more-or-less possible functionally (I am not sure what other limitations there are). The current filesystem metadata implementation, while limited, works. JDBC is a

Re: [jclouds-labs] JCLOUDS-985: Add members API (#196)

2015-08-21 Thread Zack Shoylev
+ +@AutoValue +public abstract class CreateMember { + + @Nullable + public abstract String name(); + + public abstract ListString peerURLs(); + + public abstract ListString clientURLs(); + + CreateMember() { + } + + @SerializedNames({ name, peerURLs, clientURLs }) +

Re: [jclouds] Always return ETag in filesystem object store get response (#850)

2015-08-21 Thread Ka-Hing Cheung
`LocalBlobStore` calls getBlob on the storage strategy during listContainer, this change will make it unbearably slow for the cases when the md5 needs to be generated at run time. --- Reply to this email directly or view it on GitHub:

Re: [jclouds] Always return ETag in filesystem object store get response (#850)

2015-08-21 Thread Nate Rosenblum
LocalBlobStore calls getBlob on the storage strategy during listContainer, this change will make it unbearably slow for the cases when the md5 needs to be generated at run time. That's unfortunate, though it looks like this patch simply closed a corner case on OS X, where the user extended