Git Product home page Git Product logo

Comments (3)

bdemers avatar bdemers commented on May 30, 2024

@mfulgo Thanks! this is a great place for that discussion. This thought had crossed my mind, but I wasn't sure how developers would prefer to consume it. My preference would be returning void with the handler as an argument. Though your suggestion above is nice too.

Neither of these options require the method to be async, it all depends on how the method is called. This lib could be used in a CLI or a webapp.

What type of application were you thinking about using this lib with?

Great feed back, thanks!

from okta-auth-java.

mfulgo avatar mfulgo commented on May 30, 2024

@bdemers Perfect. So, in my particular use case, I'm implementing a proxy/broker. For me, the problem with the handler is that it actually gets in the way of returning a response, but a void return would be worse.

var response: AuthenticationResponse = null
val handler = new AuthenticationStateHandlerAdapter {
  override def handleUnknown(authResp: AuthenticationResponse) = {
    response = tweakAuthResponse(authResp)
  }
}
client.authenticate(user, pass, relayState) // Assuming it returns void
ok(response)

However, if it returns the AuthenticationResponse, it simplifies quite a bit:

val authResp = client.authenticate(user, pass, relayState)
val response = tweakAuthResponse(authResp)
ok(response)
// Or just...
ok(tweakAuthResponse(client.authenticate(user, pass, relayState)))

This gets a little more complicated when dealing with Futures and thread pools, but I think the second approach gives you more control over that as well. (i.e. What context is executing the http request vs handling the response. If the client methods take in the handler, the only option is to have the client thread execute the handler methods.)

from okta-auth-java.

bdemers avatar bdemers commented on May 30, 2024

Thanks @mfulgo great examples and points! I'll chew this over a bit more.

from okta-auth-java.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.