当前位置: 首页>>代码示例>>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;未经允许,请勿转载。