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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T18:17:17+00:00 2026-06-04T18:17:17+00:00

Here is my function: private boolean CheckPassword(String type, String login, String passwordHash) { EntityManagerFactory

  • 0

Here is my function:

private boolean CheckPassword(String type, String login, String passwordHash) {
    EntityManagerFactory entityManagerFactory 
            = Persistence.createEntityManagerFactory("kwestionariuszFor" + type);
    EntityManager entityManager 
            = entityManagerFactory.createEntityManager();
    type = type.substring(0, 1).toUpperCase() + type.substring(1, type.length());
    List<Object> entities 
            = entityManager.createNamedQuery(type + ".findByLogin").setParameter("login", login).getResultList();
    if (passwordHash.equals(entities.get(0).Password)) {
        return true;
    }
    else {
        return false;
    }
}

The Java doesn’t “know” that there IS Password column in any of the tables. I was thinking that the way to tell it so may look like this:

List<type.toClass()>

or something… is there any way to achieve what I want? I don’t want to create if, after if, after if… -_-‘

  • 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-04T18:17:18+00:00Added an answer on June 4, 2026 at 6:17 pm

    You must create a common type for all of your classes that represent database tables.

    Like this:

    public abstract class PasswordObject {
        private String password;
    
        public PasswordObject(String password) {
            this.password = password;
        }
    
        public String getPassword() {
            return password;
        }
    }
    

    I don’t know if the method createNamedQuery would be able to return a List<PassowrdObject>, but if not, you can just cast it like this (as long as it’s safe to do so, which you can only tell by the way you use it):

    PasswordObject po = (PasswordObject) entities.get(0);
    String password = po.getPassword();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Private Function SendEMail(ByVal sendTo As String, ByVal subject As String) As Boolean Try ''#
Here is my function: private void btnSave_Click(object sender, EventArgs e) { wO_FlangeMillBundlesTableAdapter.Update(invClerkDataDataSet.WO_FlangeMillBundles); wO_HeadMillBundlesTableAdapter.Update(invClerkDataDataSet.WO_HeadMillBundles); wO_WebMillBundlesTableAdapter.Update(invClerkDataDataSet.WO_WebMillBundles);
Here is function , <script type=text/javascript> $(document).ready(function() { getRecordspage(1, 5); $(a.page-numbers).click(function() { alert(1); getRecordspage($(this).text(),
I have this simple function: <script type=text/javascript> //<![CDATA[ jQuery(function($){ function here(b){alert(b);} ; here(6); });
Here is a function I wrote to break a long string into lines not
hello i'm using vb 2008 here is part of my code: Private Declare Function
I have a simple Jquery function here: function submit_selection(del,submit) { del='yes'; submit=true; var ITAMZ=new
$('#selector').click(function() { // here I would like to load a javascript file // let's
I've got a function here that is meant to look through a list of
simonn helped me to code an ordered integer partition function here. He posted two

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.