com.ibm.commerce.user.objects
Class BusinessProfileAccessBean

java.lang.Object
  |
  +--com.ibm.ivj.ejb.runtime.AbstractAccessBean
        |
        +--com.ibm.ivj.ejb.runtime.AbstractEntityAccessBean
              |
              +--com.ibm.commerce.user.objects.BusinessProfileAccessBean
All Implemented Interfaces:
BusinessProfileAccessBeanData, java.io.Serializable

public class BusinessProfileAccessBean
extends com.ibm.ivj.ejb.runtime.AbstractEntityAccessBean
implements BusinessProfileAccessBeanData

This bean provides access to the BUSPROF table.

The following is a description of this table:

This table stores business profile information for a user.

See Also:
Serialized Form

Fields inherited from class com.ibm.ivj.ejb.runtime.AbstractAccessBean
DEFAULT_NAMESERVICE_PROVIDER_URL, DEFAULT_NAMESERVICE_TYPE, ejbRef
 
Constructor Summary
BusinessProfileAccessBean()
          Default constructor.
BusinessProfileAccessBean(javax.ejb.EJBObject object)
          Creates an access bean for the specified EJB
BusinessProfileAccessBean(java.util.Hashtable aProperties)
          Maps to a corresponding ejbCreate method in the home interface of the EJB
BusinessProfileAccessBean(java.lang.Long aUserId, java.lang.Long aOrganizationId)
          Maps to a corresponding ejbCreate method in the home interface of the EJB
 
Method Summary
 void commitCopyHelper()
          Update(flush) data to the EJBObject (persistent storage).
 java.util.Enumeration findByRequisitionerId(java.lang.String aRequisitionerId)
          Find by requisitioner id.
 java.lang.String getAlternateId()
          This method provides access to the BUSPROF.ALTERNATEID column of DB2 type VARCHAR(20) NULL.
 java.lang.String getDepartmentNumber()
          This method provides access to the BUSPROF.DEPARTMENTNUM column of DB2 type VARCHAR(128) NULL.
 java.lang.String getEmployeeId()
          This method provides access to the BUSPROF.EMPLOYEEID column of DB2 type VARCHAR(20) NULL.
 java.lang.String getEmployeeType()
          This method provides access to the BUSPROF.EMPLOYEETYPE column of DB2 type VARCHAR(128) NULL.
 java.lang.String getManager()
          This method provides access to the BUSPROF.MANAGER column of DB2 type VARCHAR(256) NULL.
 java.lang.String getOrganizationId()
          The organization id to which the business user owning this business profile is associated with.
 java.lang.Long getOrganizationIdInEJBType()
          The organization id to which the business user owning this business profile is associated with.
 java.lang.String getOrganizationUnitId()
          This method provides access to the BUSPROF.ORGUNIT_ID column of DB2 type BIGINT NULL.
 java.lang.Long getOrganizationUnitIdInEJBType()
          This method provides access to the BUSPROF.ORGUNIT_ID column of DB2 type BIGINT NULL.
 java.lang.String getRequistionerId()
          This method provides access to the BUSPROF.REQUISITIONERID column of DB2 type VARCHAR(128) NULL.
 java.lang.String getSecretary()
          This method provides access to the BUSPROF.SECRETARY column of DB2 type VARCHAR(256) NULL.
 java.lang.String getUserId()
          This method provides access to the BUSPROF.USERS_ID column of DB2 type BIGINT NOT NULL.
 java.lang.Long getUserIdInEJBType()
          This method provides access to the BUSPROF.USERS_ID column of DB2 type BIGINT NOT NULL.
 void refreshCopyHelper()
          Load data from the EJBObject.
 void setAlternateId(java.lang.String aAlternateId)
          This method provides access to the BUSPROF.ALTERNATEID column of DB2 type VARCHAR(20) NULL.
 void setDepartmentNumber(java.lang.String aDepartmentNumber)
          This method provides access to the BUSPROF.DEPARTMENTNUM column of DB2 type VARCHAR(128) NULL.
 void setEmployeeId(java.lang.String aEmployeeId)
          This method provides access to the BUSPROF.EMPLOYEEID column of DB2 type VARCHAR(20) NULL.
 void setEmployeeType(java.lang.String aEmployeeType)
          This method provides access to the BUSPROF.EMPLOYEETYPE column of DB2 type VARCHAR(128) NULL.
 void setInitKey_UserId(java.lang.String aInitKey_UserId)
          Set the primary key for this object
 void setManager(java.lang.String aManager)
          This method provides access to the BUSPROF.MANAGER column of DB2 type VARCHAR(256) NULL.
 void setOrganizationId(java.lang.Long aOrganizationId)
          Set the organization id to which the business user owning this business profile is associated with.
 void setOrganizationId(java.lang.String aOrganizationId)
          Set the organization id to which the business user owning this business profile is associated with.
 void setOrganizationUnitId(java.lang.Long aOrganizationUnitId)
          This method provides access to the BUSPROF.ORGUNIT_ID column of DB2 type BIGINT NULL.
 void setOrganizationUnitId(java.lang.String aOrganizationUnitId)
          This method provides access to the BUSPROF.ORGUNIT_ID column of DB2 type BIGINT NULL.
 void setRequistionerId(java.lang.String aRequistionerId)
          This method provides access to the BUSPROF.REQUISITIONERID column of DB2 type VARCHAR(128) NULL.
 void setSecretary(java.lang.String aSecretary)
          This method provides access to the BUSPROF.SECRETARY column of DB2 type VARCHAR(256) NULL.
 void setUserId(java.lang.Long aUserId)
          This method provides access to the BUSPROF.USERS_ID column of DB2 type BIGINT NOT NULL.
 void setUserId(java.lang.String aUserId)
          This method provides access to the BUSPROF.USERS_ID column of DB2 type BIGINT NOT NULL.
 
Methods inherited from class com.ibm.ivj.ejb.runtime.AbstractEntityAccessBean
__getCache, __getCache, __getKey, __setCache, __setCache, __setKey, commitCopyHelper, createAccessBeans, createAccessBeans, instantiateEJBByPrimaryKey, refreshCopyHelper, setEJBRef
 
Methods inherited from class com.ibm.ivj.ejb.runtime.AbstractAccessBean
defaultJNDIName, defaultNameServiceType, defaultNameServiceURL, getEJBRef, getGlobalHome, getHome, getInit_GlobalNameServiceTypeName, getInit_GlobalNameServiceURLName, getInit_JNDIName, getInit_NameServiceTypeName, getInit_NameServiceURLName, getInitContext, getInitContext, instantiateEJB, resetEJBRef, resetHomeCache, setInit_GlobalNameServiceTypeName, setInit_GlobalNameServiceURLName, setInit_JNDIName, setInit_NameServiceTypeName, setInit_NameServiceURLName
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

BusinessProfileAccessBean

public BusinessProfileAccessBean()

Default constructor. Maps to findByPrimaryKey.


BusinessProfileAccessBean

public BusinessProfileAccessBean(javax.ejb.EJBObject object)
                          throws java.rmi.RemoteException

Creates an access bean for the specified EJB

Parameters:
object - javax.ejb.EJBObject
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception

BusinessProfileAccessBean

public BusinessProfileAccessBean(java.util.Hashtable aProperties)
                          throws javax.naming.NamingException,
                                 javax.ejb.CreateException,
                                 java.rmi.RemoteException,
                                 javax.ejb.FinderException

Maps to a corresponding ejbCreate method in the home interface of the EJB

Parameters:
aProperties - java.util.Hashtable
Throws:
javax.naming.NamingException - The javax.naming.NamingException exception
javax.ejb.CreateException - The javax.ejb.CreateException exception
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception

BusinessProfileAccessBean

public BusinessProfileAccessBean(java.lang.Long aUserId,
                                 java.lang.Long aOrganizationId)
                          throws javax.naming.NamingException,
                                 javax.ejb.CreateException,
                                 java.rmi.RemoteException,
                                 javax.ejb.FinderException

Maps to a corresponding ejbCreate method in the home interface of the EJB

Parameters:
aUserId - java.lang.Long
aOrganizationId - java.lang.Long
Throws:
javax.naming.NamingException - The javax.naming.NamingException exception
javax.ejb.CreateException - The javax.ejb.CreateException exception
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
Method Detail

commitCopyHelper

public void commitCopyHelper()
                      throws java.rmi.RemoteException,
                             javax.ejb.CreateException,
                             javax.ejb.FinderException,
                             javax.naming.NamingException

Update(flush) data to the EJBObject (persistent storage).

Overrides:
commitCopyHelper in class com.ibm.ivj.ejb.runtime.AbstractEntityAccessBean
Returns:
void
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.CreateException - The javax.ejb.CreateException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException - The javax.naming.NamingException exception

findByRequisitionerId

public java.util.Enumeration findByRequisitionerId(java.lang.String aRequisitionerId)
                                            throws java.rmi.RemoteException,
                                                   javax.ejb.FinderException,
                                                   javax.naming.NamingException

Find by requisitioner id.

The SQL is "SELECT * FROM BUSPROF T1 WHERE (T1.REQUISITIONERID = ?)".

Parameters:
aRequisitionerId - java.lang.String
Returns:
java.util.Enumeration
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException - The javax.naming.NamingException exception

getAlternateId

public java.lang.String getAlternateId()
                                throws java.rmi.RemoteException,
                                       javax.ejb.CreateException,
                                       javax.ejb.FinderException,
                                       javax.naming.NamingException

This method provides access to the BUSPROF.ALTERNATEID column of DB2 type VARCHAR(20) NULL.

The following is a description of this column:

A special ID assigned by the organization or organizational unit to which this business user belongs.

Specified by:
getAlternateId in interface BusinessProfileAccessBeanData
Returns:
java.lang.String
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.CreateException - The javax.ejb.CreateException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException - The javax.naming.NamingException exception

getDepartmentNumber

public java.lang.String getDepartmentNumber()
                                     throws java.rmi.RemoteException,
                                            javax.ejb.CreateException,
                                            javax.ejb.FinderException,
                                            javax.naming.NamingException

This method provides access to the BUSPROF.DEPARTMENTNUM column of DB2 type VARCHAR(128) NULL.

The following is a description of this column:

The department number for the business user.

Specified by:
getDepartmentNumber in interface BusinessProfileAccessBeanData
Returns:
java.lang.String
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.CreateException - The javax.ejb.CreateException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException - The javax.naming.NamingException exception

getEmployeeId

public java.lang.String getEmployeeId()
                               throws java.rmi.RemoteException,
                                      javax.ejb.CreateException,
                                      javax.ejb.FinderException,
                                      javax.naming.NamingException

This method provides access to the BUSPROF.EMPLOYEEID column of DB2 type VARCHAR(20) NULL.

The following is a description of this column:

A method to identify the employee, such as by employee number.

Specified by:
getEmployeeId in interface BusinessProfileAccessBeanData
Returns:
java.lang.String
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.CreateException - The javax.ejb.CreateException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException - The javax.naming.NamingException exception

getEmployeeType

public java.lang.String getEmployeeType()
                                 throws java.rmi.RemoteException,
                                        javax.ejb.CreateException,
                                        javax.ejb.FinderException,
                                        javax.naming.NamingException

This method provides access to the BUSPROF.EMPLOYEETYPE column of DB2 type VARCHAR(128) NULL.

The following is a description of this column:

The employee type, such as regular, part time, special part time, supplemental, and contractor.

Specified by:
getEmployeeType in interface BusinessProfileAccessBeanData
Returns:
java.lang.String
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.CreateException - The javax.ejb.CreateException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException - The javax.naming.NamingException exception

getManager

public java.lang.String getManager()
                            throws java.rmi.RemoteException,
                                   javax.ejb.CreateException,
                                   javax.ejb.FinderException,
                                   javax.naming.NamingException

This method provides access to the BUSPROF.MANAGER column of DB2 type VARCHAR(256) NULL.

The following is a description of this column:

The name of the manager or supervisor or this his business user.

Specified by:
getManager in interface BusinessProfileAccessBeanData
Returns:
java.lang.String
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.CreateException - The javax.ejb.CreateException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException - The javax.naming.NamingException exception

getOrganizationId

public java.lang.String getOrganizationId()
                                   throws java.rmi.RemoteException,
                                          javax.ejb.CreateException,
                                          javax.ejb.FinderException,
                                          javax.naming.NamingException

The organization id to which the business user owning this business profile is associated with.

Specified by:
getOrganizationId in interface BusinessProfileAccessBeanData
Returns:
java.lang.String
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.CreateException - The javax.ejb.CreateException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException - The javax.naming.NamingException exception

getOrganizationIdInEJBType

public java.lang.Long getOrganizationIdInEJBType()
                                          throws java.rmi.RemoteException,
                                                 javax.ejb.CreateException,
                                                 javax.ejb.FinderException,
                                                 javax.naming.NamingException

The organization id to which the business user owning this business profile is associated with.

Returns:
java.lang.Long
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.CreateException - The javax.ejb.CreateException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException - The javax.naming.NamingException exception

getOrganizationUnitId

public java.lang.String getOrganizationUnitId()
                                       throws java.rmi.RemoteException,
                                              javax.ejb.CreateException,
                                              javax.ejb.FinderException,
                                              javax.naming.NamingException

This method provides access to the BUSPROF.ORGUNIT_ID column of DB2 type BIGINT NULL.

The following is a description of this column:

Identifies the organizational unit to which the business user owning this business profile is associated with. If there are multiple organizational units, it is usually the lowest one that is referred to here.

Specified by:
getOrganizationUnitId in interface BusinessProfileAccessBeanData
Returns:
java.lang.String
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.CreateException - The javax.ejb.CreateException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException - The javax.naming.NamingException exception

getOrganizationUnitIdInEJBType

public java.lang.Long getOrganizationUnitIdInEJBType()
                                              throws java.rmi.RemoteException,
                                                     javax.ejb.CreateException,
                                                     javax.ejb.FinderException,
                                                     javax.naming.NamingException

This method provides access to the BUSPROF.ORGUNIT_ID column of DB2 type BIGINT NULL.

The following is a description of this column:

Identifies the organizational unit to which the business user owning this business profile is associated with. If there are multiple organizational units, it is usually the lowest one that is referred to here.

Returns:
java.lang.Long
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.CreateException - The javax.ejb.CreateException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException - The javax.naming.NamingException exception

getRequistionerId

public java.lang.String getRequistionerId()
                                   throws java.rmi.RemoteException,
                                          javax.ejb.CreateException,
                                          javax.ejb.FinderException,
                                          javax.naming.NamingException

This method provides access to the BUSPROF.REQUISITIONERID column of DB2 type VARCHAR(128) NULL.

The following is a description of this column:

A unique ID for identifying the requisitioner.

Specified by:
getRequistionerId in interface BusinessProfileAccessBeanData
Returns:
java.lang.String
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.CreateException - The javax.ejb.CreateException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException - The javax.naming.NamingException exception

getSecretary

public java.lang.String getSecretary()
                              throws java.rmi.RemoteException,
                                     javax.ejb.CreateException,
                                     javax.ejb.FinderException,
                                     javax.naming.NamingException

This method provides access to the BUSPROF.SECRETARY column of DB2 type VARCHAR(256) NULL.

The following is a description of this column:

The name of the secretary or administrative assistant of the business user.

Specified by:
getSecretary in interface BusinessProfileAccessBeanData
Returns:
java.lang.String
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.CreateException - The javax.ejb.CreateException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException - The javax.naming.NamingException exception

getUserId

public java.lang.String getUserId()
                           throws java.rmi.RemoteException,
                                  javax.ejb.CreateException,
                                  javax.ejb.FinderException,
                                  javax.naming.NamingException

This method provides access to the BUSPROF.USERS_ID column of DB2 type BIGINT NOT NULL.

The following is a description of this column:

Foreign key to the USERS table for this business user.

Specified by:
getUserId in interface BusinessProfileAccessBeanData
Returns:
java.lang.String
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.CreateException - The javax.ejb.CreateException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException - The javax.naming.NamingException exception

getUserIdInEJBType

public java.lang.Long getUserIdInEJBType()
                                  throws java.rmi.RemoteException,
                                         javax.ejb.CreateException,
                                         javax.ejb.FinderException,
                                         javax.naming.NamingException

This method provides access to the BUSPROF.USERS_ID column of DB2 type BIGINT NOT NULL.

The following is a description of this column:

Foreign key to the USERS table for this business user.

Returns:
java.lang.Long
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.CreateException - The javax.ejb.CreateException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException - The javax.naming.NamingException exception

refreshCopyHelper

public void refreshCopyHelper()
                       throws java.rmi.RemoteException,
                              javax.ejb.CreateException,
                              javax.ejb.FinderException,
                              javax.naming.NamingException

Load data from the EJBObject.

Overrides:
refreshCopyHelper in class com.ibm.ivj.ejb.runtime.AbstractEntityAccessBean
Returns:
void
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.CreateException - The javax.ejb.CreateException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException - The javax.naming.NamingException exception

setAlternateId

public void setAlternateId(java.lang.String aAlternateId)

This method provides access to the BUSPROF.ALTERNATEID column of DB2 type VARCHAR(20) NULL.

The following is a description of this column:

A special ID assigned by the organization or organizational unit to which this business user belongs.

Specified by:
setAlternateId in interface BusinessProfileAccessBeanData
Parameters:
aAlternateId - java.lang.String
Returns:
void

setDepartmentNumber

public void setDepartmentNumber(java.lang.String aDepartmentNumber)

This method provides access to the BUSPROF.DEPARTMENTNUM column of DB2 type VARCHAR(128) NULL.

The following is a description of this column:

The department number for the business user.

Specified by:
setDepartmentNumber in interface BusinessProfileAccessBeanData
Parameters:
aDepartmentNumber - java.lang.String
Returns:
void

setEmployeeId

public void setEmployeeId(java.lang.String aEmployeeId)

This method provides access to the BUSPROF.EMPLOYEEID column of DB2 type VARCHAR(20) NULL.

The following is a description of this column:

A method to identify the employee, such as by employee number.

Specified by:
setEmployeeId in interface BusinessProfileAccessBeanData
Parameters:
aEmployeeId - java.lang.String
Returns:
void

setEmployeeType

public void setEmployeeType(java.lang.String aEmployeeType)

This method provides access to the BUSPROF.EMPLOYEETYPE column of DB2 type VARCHAR(128) NULL.

The following is a description of this column:

The employee type, such as regular, part time, special part time, supplemental, and contractor.

Specified by:
setEmployeeType in interface BusinessProfileAccessBeanData
Parameters:
aEmployeeType - java.lang.String
Returns:
void

setInitKey_UserId

public void setInitKey_UserId(java.lang.String aInitKey_UserId)

Set the primary key for this object

Parameters:
aInitKey_UserId - java.lang.String
Returns:
void

setManager

public void setManager(java.lang.String aManager)

This method provides access to the BUSPROF.MANAGER column of DB2 type VARCHAR(256) NULL.

The following is a description of this column:

The name of the manager or supervisor or this his business user.

Specified by:
setManager in interface BusinessProfileAccessBeanData
Parameters:
aManager - java.lang.String
Returns:
void

setOrganizationId

public void setOrganizationId(java.lang.Long aOrganizationId)

Set the organization id to which the business user owning this business profile is associated with.

Parameters:
aOrganizationId - java.lang.Long
Returns:
void

setOrganizationId

public void setOrganizationId(java.lang.String aOrganizationId)

Set the organization id to which the business user owning this business profile is associated with.

Specified by:
setOrganizationId in interface BusinessProfileAccessBeanData
Parameters:
aOrganizationId - java.lang.String
Returns:
void

setOrganizationUnitId

public void setOrganizationUnitId(java.lang.Long aOrganizationUnitId)

This method provides access to the BUSPROF.ORGUNIT_ID column of DB2 type BIGINT NULL.

The following is a description of this column:

Identifies the organizational unit to which the business user owning this business profile is associated with. If there are multiple organizational units, it is usually the lowest one that is referred to here.

Parameters:
aOrganizationUnitId - java.lang.Long
Returns:
void

setOrganizationUnitId

public void setOrganizationUnitId(java.lang.String aOrganizationUnitId)

This method provides access to the BUSPROF.ORGUNIT_ID column of DB2 type BIGINT NULL.

The following is a description of this column:

Identifies the organizational unit to which the business user owning this business profile is associated with. If there are multiple organizational units, it is usually the lowest one that is referred to here.

Specified by:
setOrganizationUnitId in interface BusinessProfileAccessBeanData
Parameters:
aOrganizationUnitId - java.lang.String
Returns:
void

setRequistionerId

public void setRequistionerId(java.lang.String aRequistionerId)

This method provides access to the BUSPROF.REQUISITIONERID column of DB2 type VARCHAR(128) NULL.

The following is a description of this column:

A unique ID for identifying the requisitioner.

Specified by:
setRequistionerId in interface BusinessProfileAccessBeanData
Parameters:
aRequistionerId - java.lang.String
Returns:
void

setSecretary

public void setSecretary(java.lang.String aSecretary)

This method provides access to the BUSPROF.SECRETARY column of DB2 type VARCHAR(256) NULL.

The following is a description of this column:

The name of the secretary or administrative assistant of the business user.

Specified by:
setSecretary in interface BusinessProfileAccessBeanData
Parameters:
aSecretary - java.lang.String
Returns:
void

setUserId

public void setUserId(java.lang.Long aUserId)

This method provides access to the BUSPROF.USERS_ID column of DB2 type BIGINT NOT NULL.

The following is a description of this column:

Foreign key to the USERS table for this business user.

Parameters:
aUserId - java.lang.Long
Returns:
void

setUserId

public void setUserId(java.lang.String aUserId)

This method provides access to the BUSPROF.USERS_ID column of DB2 type BIGINT NOT NULL.

The following is a description of this column:

Foreign key to the USERS table for this business user.

Specified by:
setUserId in interface BusinessProfileAccessBeanData
Parameters:
aUserId - java.lang.String
Returns:
void