All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.beigesoft.ajetty.GetUsrCrd Maven / Gradle / Ivy

/*
BSD 2-Clause License

Copyright (c) 2019, Beigesoft™
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

* Redistributions of source code must retain the above copyright notice, this
  list of conditions and the following disclaimer.

* Redistributions in binary form must reproduce the above copyright notice,
  this list of conditions and the following disclaimer in the documentation
  and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */

package org.beigesoft.ajetty;

import java.util.ArrayList;

import org.beigesoft.mdl.IRecSet;
import org.beigesoft.rdb.IRdb;

/**
 * 

Service that get user credentials (from database).

* @param platform dependent RDBMS recordset * @author Yury Demidenko */ public class GetUsrCrd implements ISrvGetUserCredentials { /** *

Database service.

**/ private IRdb rdb; /** *

Retrieve User Credentials.

* @param pUserName User Name * @return User Credentials * @throws Exception - an exception **/ @Override public final UserCredentials retrieveUserCredentials( final String pUserName) throws Exception { String query = "select USTMC.USR as USR, PWD, ROL" + " from USTMC join USRLTMC on USRLTMC.USR =" + " USTMC.USR where USTMC.USR = '" + pUserName + "';"; UserCredentials result = null; IRecSet recSet = null; try { this.rdb.setAcmt(false); this.rdb.setTrIsl(IRdb.TRRUC); this.rdb.begin(); recSet = getRdb().retRs(query); if (recSet.first()) { ArrayList roles = new ArrayList(); do { if (result == null) { result = new UserCredentials(); result.setUserName(recSet.getStr("USR")); result.setUserPassword(recSet.getStr("PWD")); } roles.add(recSet.getStr("ROL")); } while (recSet.next()); result.setUserRoles(roles.toArray(new String[roles.size()])); } this.rdb.commit(); } catch (Exception ex) { if (!rdb.getAcmt()) { rdb.rollBack(); } throw ex; } finally { if (recSet != null) { recSet.close(); } this.rdb.release(); } return result; } /** *

Retrieve all Users Credentials.

* @return Users Credentials * @throws Exception - an exception **/ @Override public final UserCredentials[] retrieveUsersCredentials() throws Exception { String query = "select USTMC.USR as USR, PWD, ROL from USTMC join USRLTMC" + " on USRLTMC.USR = USTMC.USR;"; ArrayList result = null; IRecSet recSet = null; try { this.rdb.setAcmt(false); this.rdb.setTrIsl(IRdb.TRRUC); this.rdb.begin(); recSet = getRdb().retRs(query); if (recSet != null && recSet.first()) { result = new ArrayList(); UserCredentials uc = null; ArrayList roles = new ArrayList(); do { String currUser = recSet.getStr("USR"); if (uc == null) { uc = new UserCredentials(); result.add(uc); uc.setUserName(currUser); uc.setUserPassword(recSet.getStr("PWD")); } else if (!currUser.equals(uc.getUserName())) { uc.setUserRoles(roles.toArray(new String[roles.size()])); roles.clear(); uc = new UserCredentials(); result.add(uc); uc.setUserName(currUser); uc.setUserPassword(recSet.getStr("PWD")); } roles.add(recSet.getStr("ROL")); } while (recSet.next()); uc.setUserRoles(roles.toArray(new String[roles.size()])); } this.rdb.commit(); } catch (Exception ex) { if (!rdb.getAcmt()) { rdb.rollBack(); } throw ex; } finally { if (recSet != null) { recSet.close(); } this.rdb.release(); } if (result == null) { return null; } return result.toArray(new UserCredentials[result.size()]); } /** *

Geter for rdb.

* @return IRdb **/ public final IRdb getRdb() { return this.rdb; } /** *

Setter for rdb.

* @param pRdb reference **/ public final void setRdb(final IRdb pRdb) { this.rdb = pRdb; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy