|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectblackboard.cms.portfolio.PortfolioPortalRoleAccessManager
public class PortfolioPortalRoleAccessManager
The PortfolioPortalRoleAccessManager class provides a representation of a PortfolioPortalRoleAccessManager
within the Blackboard application. This object provides load, save and delete methods
for managing a single or multiple PortfolioPortalRoleAccess items.
| Constructor Summary | |
|---|---|
PortfolioPortalRoleAccessManager()
|
|
| Method Summary | |
|---|---|
static void |
deleteById(Id id)
Deletes the PortfolioPortalRoleAccess identified by the Id using default connection. |
static void |
deleteById(Id id,
java.sql.Connection con)
Deletes the PortfolioPortalRoleAccess identified by the Id using the supplied connection. |
static void |
deleteByPortalRoleId(Id id)
Deletes the PortfolioPortalRoleAccess identified by the course Id using default connection. |
static void |
deleteByPortalRoleId(Id id,
java.sql.Connection con)
Deletes the PortfolioPortalRoleAccess identified by the course Id using supplied connection. |
static void |
deleteByPortfolioId(Id id)
Deletes the PortfolioPortalRoleAccess identified by the portfolio Id using default connection. |
static void |
deleteByPortfolioId(Id id,
java.sql.Connection con)
Deletes the PortfolioPortalRoleAccess identified by the portfolio Id using supplied connection. |
static PortfolioPortalRoleAccess |
loadById(Id id)
Loads a PortfolioPortalRoleAccess identified by the given Id using the default connection. |
static PortfolioPortalRoleAccess |
loadById(Id id,
java.sql.Connection con)
Loads a PortfolioPortalRoleAccess identified by the given Id using the supplied connection. |
static java.util.List<PortfolioPortalRoleAccess> |
loadByPortalRoleId(Id id)
Loads a List of PortfolioPortalRoleAccess items identified by the given course Id using the default connection. |
static java.util.List<PortfolioPortalRoleAccess> |
loadByPortalRoleId(Id id,
java.sql.Connection con)
Loads a List of PortfolioPortalRoleAccess items identified by the given course Id using the supplied connection. |
static PortfolioPortalRoleAccess |
loadByPortalRoleIdandPortfolioId(Id prId,
Id pId)
Loads a PortfolioPortalRoleAccess item identified by the given course Id using the default connection. |
static PortfolioPortalRoleAccess |
loadByPortalRoleIdandPortfolioId(Id prId,
Id pId,
java.sql.Connection con)
Loads a PortfolioPortalRoleAccess item identified by the given portal role Id
and portfolio Id using the default connection. |
static java.util.List<PortfolioPortalRoleAccess> |
loadByPortfolioId(Id id)
Loads a List of PortfolioPortalRoleAccess items identified by the given portfolio Id using the default connection. |
static java.util.List<PortfolioPortalRoleAccess> |
loadByPortfolioId(Id id,
java.sql.Connection con)
Loads a List PortfolioPortalRoleAccess items identified by the given portfolio Id using the supplied connection. |
static void |
save(PortfolioPortalRoleAccess pca)
Inserts or updates the PortfolioPortalRoleAccess using the default connection. |
static void |
save(PortfolioPortalRoleAccess pca,
java.sql.Connection con)
Inserts or updates the PortfolioPortalRoleAccess using the supplied connection. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public PortfolioPortalRoleAccessManager()
| Method Detail |
|---|
public static void save(PortfolioPortalRoleAccess pca,
java.sql.Connection con)
throws PersistenceException
PortfolioPortalRoleAccess using the supplied connection.
pca - a PortfolioComment to be saved.con - a Connection to be used to save this PortfolioPortalRoleAccess.
PersistenceException
public static void save(PortfolioPortalRoleAccess pca)
throws PersistenceException
PortfolioPortalRoleAccess using the default connection.
pca - a PortfolioPortalRoleAccess to be saved.
PersistenceException
public static void deleteById(Id id)
throws PersistenceException
PortfolioPortalRoleAccess identified by the Id using default connection.
id - the Id of the PortfolioPortalRoleAccess to be deleted using default connection.
PersistenceException
public static void deleteById(Id id,
java.sql.Connection con)
throws PersistenceException
PortfolioPortalRoleAccess identified by the Id using the supplied connection.
id - the Id of the PortfolioPortalRoleAccess to be deleted using the supplied connection.con - a Connection to be used.
PersistenceException
public static void deleteByPortfolioId(Id id)
throws PersistenceException
PortfolioPortalRoleAccess identified by the portfolio Id using default connection.
id - the portfolio Id of the PortfolioPortalRoleAccess to be deleted using default connection.
PersistenceException
public static void deleteByPortfolioId(Id id,
java.sql.Connection con)
throws PersistenceException
PortfolioPortalRoleAccess identified by the portfolio Id using supplied connection.
id - the portfolio Id of the PortfolioPortalRoleAccess to be deleted using supplied connection.con - a Connection to be used.
PersistenceException
public static void deleteByPortalRoleId(Id id)
throws PersistenceException
PortfolioPortalRoleAccess identified by the course Id using default connection.
id - the course Id of the PortfolioPortalRoleAccess to be deleted using default connection.
PersistenceException
public static void deleteByPortalRoleId(Id id,
java.sql.Connection con)
throws PersistenceException
PortfolioPortalRoleAccess identified by the course Id using supplied connection.
id - the course Id of the PortfolioPortalRoleAccess to be deleted using supplied connection.con - a Connection to be used.
PersistenceException
public static PortfolioPortalRoleAccess loadById(Id id,
java.sql.Connection con)
throws PersistenceException
PortfolioPortalRoleAccess identified by the given Id using the supplied connection.
id - the Id of the PortfolioPortalRoleAccess to be loaded using the supplied connection.con - a Connection to be used.
PortfolioPortalRoleAccess that is identified by the given Id. Returns null (instead of KeyNotFoundException) if the PortfolioPortalRoleAccess is not found.
PersistenceException
public static PortfolioPortalRoleAccess loadById(Id id)
throws PersistenceException
PortfolioPortalRoleAccess identified by the given Id using the default connection.
id - the Id of the PortfolioPortalRoleAccess to be loaded using the default supplied.
PortfolioPortalRoleAccess that is identified by the given Id. Returns null (instead of KeyNotFoundException) if the PortfolioPortalRoleAccess is not found.
PersistenceException
public static java.util.List<PortfolioPortalRoleAccess> loadByPortfolioId(Id id,
java.sql.Connection con)
throws PersistenceException
PortfolioPortalRoleAccess items identified by the given portfolio Id using the supplied connection.
id - the portfolio Id of the PortfolioPortalRoleAccess to be loaded using the supplied connection.con - a Connection to be used.
PortfolioPortalRoleAccess items that is identified by the given portfolio Id.
PersistenceException
public static java.util.List<PortfolioPortalRoleAccess> loadByPortfolioId(Id id)
throws PersistenceException
PortfolioPortalRoleAccess items identified by the given portfolio Id using the default connection.
id - the portfolio Id of the PortfolioPortalRoleAccess to be loaded using the default connection.
PortfolioPortalRoleAccess items that is identified by the given portfolio Id.
PersistenceException
public static java.util.List<PortfolioPortalRoleAccess> loadByPortalRoleId(Id id,
java.sql.Connection con)
throws PersistenceException
PortfolioPortalRoleAccess items identified by the given course Id using the supplied connection.
id - the course Id of the PortfolioPortalRoleAccess to be loaded using the supplied connection.con - a Connection to be used.
PortfolioPortalRoleAccess items that is identified by the given course Id.
PersistenceException
public static java.util.List<PortfolioPortalRoleAccess> loadByPortalRoleId(Id id)
throws PersistenceException
PortfolioPortalRoleAccess items identified by the given course Id using the default connection.
id - the course Id of the PortfolioPortalRoleAccess to be loaded using the default connection.
PortfolioPortalRoleAccess items that is identified by the given course Id.
PersistenceException
public static PortfolioPortalRoleAccess loadByPortalRoleIdandPortfolioId(Id prId,
Id pId,
java.sql.Connection con)
throws PersistenceException
PortfolioPortalRoleAccess item identified by the given portal role Id
and portfolio Id using the default connection.
prId - the PortalRoleId of the PortfolioPortalRoleAccess.pId - the PorfolioId of the PortfolioPortalRoleAccess .con - a Connection to be used.
PortfolioPortalRoleAccess item that is identified by the given portal role and porfolio idId.
PersistenceException
public static PortfolioPortalRoleAccess loadByPortalRoleIdandPortfolioId(Id prId,
Id pId)
throws PersistenceException
PortfolioPortalRoleAccess item identified by the given course Id using the default connection.
prId - the PortalRoleId of the PortfolioPortalRoleAccess.pId - the PorfolioId of the PortfolioPortalRoleAccess .
PortfolioPortalRoleAccess item that is identified by the given portal role and porfolio idId.
PersistenceException
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||