Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

How can I access members of a custom Realm or Principal?

When you create a custom subclass of RealmBase or GenericPrincipal and attempt to use those classes in your webapp code, you'll probably have problems with ClassCastException. This is because the instance returned by request.getUserPrincipal() is of a class loaded by the server's ClassLoader, and you are trying to access it through you webapp's ClassLoader. While the classes maybe otherwise exactly the same, different (sibling) ClassLoaders makes them different classes.

...

Here's what you would like to do, but it throws ClassCastException:

No Format

MyPrincipal p = request.getUserPrincipal;
String emailAddress = p.getEmailAddress();

Here are 4 ways you might get around the ClassLoader boundary:

1) "Reflection"? Principal p = Reflection

No Format

Principal p = request.getUserPrincipal;
String emailAddress = p.getClass().getMethod("getEmailAddress", null).invoke(p, null);

2) " Move classes to a common ClassLoader

"? You could put your custom classes in a ClassLoader that is common to both the server and your webapp - e.g., either the "common" or bootstrap ClassLoaders. To do this, however, you would also need to move the classes that your custom classes depend on up to the common ClassLoader, and that seems like a bad idea, because there a many of them and they a core server classes.

3) " Common Interfaces

"? Rather than move the implementing custom classes up, you could define Interfaces for your customs classes, and put the interfaces in the common directory. You're code would look like this:

No Format

public interface MyPrincipalInterface extends java.security.Principal {

...


  public String getEmailAddress();

...


}

...



public class MyPrincipal implements MyPrincipalInterface {

...


...

...


  public String getEmailAddress() {

...


    return emailAddress;

...


  }

...


}

...



public class MyServlet implements Servlet {

...


  protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {

...


    MyPrincipalInterface p = (MyPrincipalInterface)request.getUserPrincipal();

...


    String emailAddress = p.getEmailAddress();
...

...


}

"""Notice that this method gives you pretty much the webapp code you wanted in the first place"""

4) Serializing / Deserializing

Wiki Markup
4) "Serializing / Deserializing" You might want to try serializing the response of request.getUserPrincipal() and deserialize it to an instance of \[webapp\]MyPrincipal.

...