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 8134719
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T10:08:03+00:00 2026-06-06T10:08:03+00:00

I have a form made in JSP, here I have multiple buttons – Approve,

  • 0

I have a form made in JSP, here I have multiple buttons – “Approve, Reject, Save, Cancel”.
For every submit, the control goes to a single Controller(Servlet), and there I am handling this submit as ::

String methodName = (String) request.getParameter("methodName");
if(methodName.trim.toLower().equals("approve")) 
{
  approve_Claim(parameters);
}
else if(methodName.trim.toLower().equals("reject")) 
{
  reject_Claim(parameters);
}
else if(methodName.trim.toLower().equals("save")) 
{
  save_Claim(parameters);
}
else if(methodName.trim.toLower().equals("cancel")) 
{
  cancel_Claim(parameters);
}

Is there a way to remove these multiple if’s,
please suggest

  • 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-06-06T10:08:04+00:00Added an answer on June 6, 2026 at 10:08 am

    It looks like you basically want a mapping from methodName.trim().toLower() to some sort of “claim action” which takes parameters. Create an interface like this:

    interface ClaimAction
    {
        void execute(Parameters parameters);
    }
    

    Then implement this with classes of CancelClaimAction, ApproveClaimAction etc. Next create a Map<String, ClaimAction> mapping “approve” to an ApproveClaimAction etc. Then:

    String actionName = methodName.trim().toLower(Locale.US));
    ClaimAction action = CLAIM_ACTION_MAPPING.get(actionName);
    if (action != null)
    {
        action.execute(parameters);
    }
    else
    {
        // Error case, presumably.
    }
    

    You could use enums to do this, but I’d expect each of these classes to have enough work to do that it’s worth separating them out and testing each one individually.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In my iOS application I have made a form that should submit data into
I have a remote form with hand-made buttons using tags. I'm using data-remote=true in
I have a form made by Zend Framework that needs a submit button. I
I have a form that is made up of lots of radio buttons and
i have made a small web application with form.html output.jsp ServletOne.java In the form.html,users
I have a form made up of multiple, optional subparts - each of which
I have a form which is made up of radio buttons. The link is
I have a JSP form which is made of <input type=file/> tag alone for
i have a form (made through codeigniter) that i want to submit with ajax
I have made a form that accepts query and executes it through php. I

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.