Christian Bongiorno

Results 130 comments of Christian Bongiorno

License specific functionality - This has been considered repeatedly, but to be honest, I don't think It can't be practically implemented. The matrix of API -> version(s) is simply non-existent,...

@mcaulifn - The way terraform manages resource and state means that each resource knows nothing about the other. So, when TF attempts to invoke the code to create the repo,...

BTW: Your `url` includes `/artifactory` which is ignored, since the endpoints for any given resource in artifactory does not have a consistent endpoint. As a result, the only thing that...

Can you supply some TF code as an example of what you're hoping for and some documentation? I am having a hard time visualizing what you're asking

Both, actually. So can set the accept and content type handlers. And, as it's a list, i suggest the verb "AddContentTypeHandler" (and AddAccept...) Then, reimplement the current code to follow...

I could have handily used this when marshalling form encoded data. The current code didn't like that

Generally, I think resty needs a better middleware model with sensible, but overridable or augmentable defaults. Then you can actually install middleware that can do the encoding correctly

@jj0e - for the record, that is not at all part of the http spec. When you say "order" do you mean insertion order or sort order?

I may have already answered myself with `HashSet.distinctBy(Function

@ruslansennov Something close already exists: `HashSet.distinctBy(MyObject::getId).of(new MyObject());` But it doesn't appear that the resultant set from that call actually returns a `HashSet` where the hashing is based on the result...