當前位置: 首頁>>代碼示例>>Java>>正文


Java CSDataAccessException類代碼示例

本文整理匯總了Java中gov.nih.nci.security.exceptions.CSDataAccessException的典型用法代碼示例。如果您正苦於以下問題:Java CSDataAccessException類的具體用法?Java CSDataAccessException怎麽用?Java CSDataAccessException使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


CSDataAccessException類屬於gov.nih.nci.security.exceptions包,在下文中一共展示了CSDataAccessException類的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: refreshInstanceTables

import gov.nih.nci.security.exceptions.CSDataAccessException; //導入依賴的package包/類
public void refreshInstanceTables(boolean instanceLevelSecurityForUser) throws CSObjectNotFoundException, CSDataAccessException {

		authorizationDAO.refreshInstanceTables(instanceLevelSecurityForUser);
	}
 
開發者ID:NCIP,項目名稱:cagrid-general,代碼行數:5,代碼來源:AuthorizationManagerImpl.java

示例2: maintainInstanceTables

import gov.nih.nci.security.exceptions.CSDataAccessException; //導入依賴的package包/類
public void maintainInstanceTables(String instanceLevelMappingElementId) throws CSObjectNotFoundException, CSDataAccessException {
	authorizationDAO.maintainInstanceTables(instanceLevelMappingElementId);
	
}
 
開發者ID:NCIP,項目名稱:cagrid-general,代碼行數:5,代碼來源:AuthorizationManagerImpl.java

示例3: maintainInstanceTables

import gov.nih.nci.security.exceptions.CSDataAccessException; //導入依賴的package包/類
/**
 * This method will create/maintain the Intermediate tables for instance level security performance improvement.
 * 
 * @param instanceLevelMappingElementId the id of the InstanceLevelMappingElement object which is to be maintained for 
 * 			performance improvement. 
 * @throws CSDataAccessException if there is any error in the maintaining Instance tables for the InstanceLevelMappingElement Ojbect
 */
public void maintainInstanceTables(String instanceLevelMappingElementId) throws CSObjectNotFoundException, CSDataAccessException;
 
開發者ID:NCIP,項目名稱:cagrid-general,代碼行數:9,代碼來源:AuthorizationManager.java

示例4: refreshInstanceTables

import gov.nih.nci.security.exceptions.CSDataAccessException; //導入依賴的package包/類
/**
 * This method will refresh the Intermediate tables for instance level security performance improvement.
 * 
 * @param instanceLevelSecurityForUser the boolean flag value to indicate Instance Level Security For User or Group is being used. 
 * @throws CSObjectNotFoundException if there is any error in retrieving of the Mapping Element Ojbects
 * @throws CSDataAccessException if there is any error in the refreshing Instance tables for the InstanceLevelMappingElement Ojbect
 */
public void refreshInstanceTables(boolean instanceLevelSecurityForUser) throws CSObjectNotFoundException, CSDataAccessException;
 
開發者ID:NCIP,項目名稱:cagrid-general,代碼行數:9,代碼來源:AuthorizationManager.java

示例5: maintainInstanceTables

import gov.nih.nci.security.exceptions.CSDataAccessException; //導入依賴的package包/類
public void maintainInstanceTables(String instanceLevelMappingElementId) throws CSObjectNotFoundException, CSDataAccessException {
	authorizationDAO.maintainInstanceTables(instanceLevelMappingElementId);

}
 
開發者ID:NCIP,項目名稱:common-security-module,代碼行數:5,代碼來源:AuthorizationManagerImpl.java

示例6: maintainInstanceTables

import gov.nih.nci.security.exceptions.CSDataAccessException; //導入依賴的package包/類
/**
 * This method will create/maintain the Intermediate tables for instance level security performance improvement.
 *
 * @param instanceLevelMappingElementId the id of the InstanceLevelMappingElement object which is to be maintained for
 * 			performance improvement.
 * @throws CSDataAccessException if there is any error in the maintaining Instance tables for the InstanceLevelMappingElement Ojbect
 */
public void maintainInstanceTables(String instanceLevelMappingElementId) throws CSObjectNotFoundException, CSDataAccessException;
 
開發者ID:NCIP,項目名稱:common-security-module,代碼行數:9,代碼來源:AuthorizationManager.java

示例7: refreshInstanceTables

import gov.nih.nci.security.exceptions.CSDataAccessException; //導入依賴的package包/類
/**
 * This method will refresh the Intermediate tables for instance level security performance improvement.
 *
 * @param instanceLevelSecurityForUser the boolean flag value to indicate Instance Level Security For User or Group is being used.
 * @throws CSObjectNotFoundException if there is any error in retrieving of the Mapping Element Ojbects
 * @throws CSDataAccessException if there is any error in the refreshing Instance tables for the InstanceLevelMappingElement Ojbect
 */
public void refreshInstanceTables(boolean instanceLevelSecurityForUser) throws CSObjectNotFoundException, CSDataAccessException;
 
開發者ID:NCIP,項目名稱:common-security-module,代碼行數:9,代碼來源:AuthorizationManager.java

示例8: refreshInstanceTables

import gov.nih.nci.security.exceptions.CSDataAccessException; //導入依賴的package包/類
public void refreshInstanceTables(boolean instanceLevelSecurityForUser) throws CSObjectNotFoundException, CSDataAccessException; 
開發者ID:NCIP,項目名稱:cagrid-general,代碼行數:2,代碼來源:AuthorizationDAO.java

示例9: maintainInstanceTables

import gov.nih.nci.security.exceptions.CSDataAccessException; //導入依賴的package包/類
public void maintainInstanceTables(String instanceLevelMappingElementId) throws CSObjectNotFoundException, CSDataAccessException; 
開發者ID:NCIP,項目名稱:cagrid-general,代碼行數:2,代碼來源:AuthorizationDAO.java


注:本文中的gov.nih.nci.security.exceptions.CSDataAccessException類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。