Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6893671
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T06:41:16+00:00 2026-05-27T06:41:16+00:00

Again I would like to get your opinion about a design issue. I have

  • 0

Again I would like to get your opinion about a design issue.

I have a JavaBean with 15 attributes. For feeding the attributes I have a for loop that iterates over a collection of key-value pairs (concretely SAML attributes, I am mapping the attributes response to principals attributes). I am invoking the appropriate setter method basis on the key value, this is:

    .../...
    for (SAML2AttributeInfo attr : attrs) {
        if (attr.getAttributeName().equals("http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn")) {
            customPrincipal.setUpn(attr.getAttributeValues().iterator().next());
        }
        .../... so on and so forth
    }

It works, ok, but I have an ugly piece of code, 15 if-statements like above do not look very elegant.

I am thinking on using Reflection, this is, develop a unique set method and pass it the name of the attribute and his value.

Another option could be store the attributes in a Map, but I am not sure…

Any ideas?

Thanks in advance,

Luis

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T06:41:17+00:00Added an answer on May 27, 2026 at 6:41 am

    Polymorphism for the rescue

    enum Attribute {
        UPN("http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn") {
            void setValue(Principal principal, String value) {
                principal.setUpn(value);
            }
        },
        ...
        ;
    
        private final String name;
    
        private Attribute(String name) {
            this.name = name;
        }
    
        public abstract setValue(Principal principal, String name);
    
        public static Attribute getByName(String name) {
            for (Attribute attribute : values())
                if (attribute.name.equals(name))
                    return attribute;
    
            return null;
        }
    
        public static void setByName(Principal principal, String name, String value) {
            Attribute attribute = getByName(name);
    
            if (attribute == null)
                throw new IllegalArgumentException("No such attribute");
    
            attribute.setValue(principal, value);
        }
    }
    

    If you know the attribute you want to set there is no reason to go go via the name:

    Attribute.UPN.setValue(principal, "something");
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a small problem and I would like to get your opinion. I'm
Me again... I have an XML File that contains different categories which I would
I have a problem and I would like your help. I have in my
I have built an application in C# that I would like to be optimized
I got nabbed by the following bug again and would like some clarification to
Once again a very beginner-ish question, but here I go: I would like to
Back again with a javascript question within sharepoint. I would like to hide a
Here we go again, the old argument still arises... Would we better have a
i have done an Accordion style jQuery function which works lovely, but would like
I would like to hear from people who have real world programming experience in

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.