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

  • Home
  • SEARCH
  • 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 6570129
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T14:43:02+00:00 2026-05-25T14:43:02+00:00

I have a database which contains users, roles, and permissions. I want to be

  • 0

I have a database which contains users, roles, and permissions. I want to be able to map this to the front end (Java Swing) so a user who can’t do an action can’t see it.

An example:

  • Role AddressManager has permissions create_address, edit_address and
    remove_address.
  • User A has permissions create_address and edit_address.
  • User B has permission remove_address.

I want three buttons for the address view that represent the roles from the AddressManager, and for the users A and B to enable / disable the buttons.

Question: Is there any easy way to map database table values to Swing components (Buttons)?

One way is to assign enable/disable manually to every single component, but that’s unpractical if there are 40 dialogs in the application with about 200 components that must have permission.

  • 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-25T14:43:03+00:00Added an answer on May 25, 2026 at 2:43 pm

    What you can do is to write a class like this and use it everywhere.
    In your example you would add it with new ActionContainer(“adress”); and it will create a create_address, edit_address, delete_address Button that are enabled if the user posses the matching right.

    package de.steamnet.samples;
    
    // This class is a Panel that renders buttons based on rights.
    
    import java.awt.event.ActionListener;
    import java.util.ArrayList;
    import java.util.List;
    import javax.swing.JButton;
    import javax.swing.JPanel;
    
    public class ActionContainer extends JPanel {
        List<JButton> buttons = new ArrayList<JButton>();
    
        public ActionContainer(String rightBase) {
            List<String> rights = database.getRightsStartingWith(rightBase);
            for(String nextRight : rights) {
                JButton next = new JButton(nextRight);
                buttons.add(next);
                if(user.hasRight(nextRight)) {
                    next.setEnabled(true);
                } else {
                    next.setEnabled(false);
                }
                add(next);
            }
        }
    
        public void addActionListener(ActionListener al) {
            for(JButton next: buttons) {
                next.addActionListener(al);
            }
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an old database of users which contains passwords hashed in a way
I have a MySQL database which contains a table of users. The primary key
I have a database table for users which contains common fields like password, email
I have a database which contains picture data stored as a binary blob. The
At the moment, I have a database which contains username, password, etc. I am
I have one database table which contains 8 columns. One of the columns is
I have a database Student which contains about 20 tables. one of the tables
we have a table in an Oracle Database which contains a column with the
I have my own custom Content Provider that loads a database which contains the
I have a database (NexusDB (supposedly SQL-92 compliant)) which contains and Item table, a

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.