本文整理汇总了Java中org.LexGrid.LexBIG.Exceptions.LBInvocationException类的典型用法代码示例。如果您正苦于以下问题:Java LBInvocationException类的具体用法?Java LBInvocationException怎么用?Java LBInvocationException使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
LBInvocationException类属于org.LexGrid.LexBIG.Exceptions包,在下文中一共展示了LBInvocationException类的32个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: buildResolvedConceptReference
点赞 3
import org.LexGrid.LexBIG.Exceptions.LBInvocationException; //导入依赖的package包/类
public ResolvedConceptReferenceList buildResolvedConceptReference(List<CodeToReturn> codesToReturn,
LocalNameList restrictToProperties, PropertyType[] restrictToPropertyTypes, Filter[] filters,
boolean resolve) throws LBInvocationException {
ResolvedConceptReferenceList returnList = new ResolvedConceptReferenceList();
for(CodeToReturn codeToReturn : codesToReturn){
returnList.addResolvedConceptReference(
doBuildResolvedConceptReference(
codeToReturn,
restrictToProperties,
restrictToPropertyTypes,
filters,
resolve));
}
if(resolve) {
return this.addEntities(returnList, codesToReturn, restrictToProperties, restrictToPropertyTypes);
} else {
return returnList;
}
}
开发者ID:NCIP,
项目名称:cadsr-semantic-tools,
代码行数:22,
代码来源:DefaultCodeToReturnResolver.java
示例2: addEntities
点赞 3
import org.LexGrid.LexBIG.Exceptions.LBInvocationException; //导入依赖的package包/类
private ResolvedConceptReferenceList addEntities(
ResolvedConceptReferenceList unresolvedList,
List<CodeToReturn> codesToReturn,
LocalNameList restrictToProperties, PropertyType[] restrictToPropertyTypes) throws LBInvocationException {
Map<String,Entity> entityMap = this.buildCodedEntry(
codesToReturn,
restrictToProperties,
restrictToPropertyTypes);
for(ResolvedConceptReference ref : unresolvedList.getResolvedConceptReference()) {
if(ref == null) {continue;}
String refKey = this.getKey(ref);
ref.setEntity(entityMap.get(refKey));
}
return unresolvedList;
}
开发者ID:NCIP,
项目名称:cadsr-semantic-tools,
代码行数:19,
代码来源:DefaultCodeToReturnResolver.java
示例3: buildCodedEntry
点赞 3
import org.LexGrid.LexBIG.Exceptions.LBInvocationException; //导入依赖的package包/类
private Entity buildCodedEntry(String codingSchemeUri, String codingSchemeVersion, String code, String namespace,
LocalNameList restrictToProperties, PropertyType[] restrictToPropertyTypes) throws LBInvocationException {
if(DaoUtility.containsNulls(codingSchemeUri, codingSchemeVersion,code,namespace)){
return null;
}
EntityService entityService =
LexEvsServiceLocator.getInstance().getDatabaseServiceManager().getEntityService();
return entityService.getEntity(
codingSchemeUri,
codingSchemeVersion,
code,
namespace,
DaoUtility.localNameListToString(restrictToProperties),
DaoUtility.propertyTypeArrayToString(restrictToPropertyTypes));
}
开发者ID:NCIP,
项目名称:cadsr-semantic-tools,
代码行数:18,
代码来源:DefaultCodeToReturnResolver.java
示例4: getLexCodingSchemeRenderings
点赞 3
import org.LexGrid.LexBIG.Exceptions.LBInvocationException; //导入依赖的package包/类
public static <T extends ResourceQuery> CodingSchemeRendering[] getLexCodingSchemeRenderings(
LexBIGService lexBigService,
VersionNameConverter nameConverter,
QueryData<T> queryData,
MappingExtension lexMappingExtension,
SortCriteria cts2SortCriteria){
CodingSchemeRenderingList lexRenderingList = null;
String cts2SystemName = queryData.getCts2SystemName();
Set<ResolvedFilter> cts2Filters = queryData.getCts2Filters();
try {
lexRenderingList = lexBigService.getSupportedCodingSchemes();
} catch (LBInvocationException e) {
throw new RuntimeException(e);
}
lexRenderingList = CommonSearchFilterUtils.filterLexCodingSchemeRenderingList(lexRenderingList, cts2SystemName, lexMappingExtension);
lexRenderingList = CommonSearchFilterUtils.filterLexCodingSchemeRenderingList(lexRenderingList, cts2Filters, nameConverter);
if(queryData.getReadContext() != null){
lexRenderingList = CommonSearchFilterUtils.filterLexCodingSchemeRenderingList(lexRenderingList, queryData.getReadContext());
}
return lexRenderingList.getCodingSchemeRendering();
}
开发者ID:NCIP,
项目名称:lexevs-service,
代码行数:27,
代码来源:CommonResourceUtils.java
示例5: onChange
点赞 3
import org.LexGrid.LexBIG.Exceptions.LBInvocationException; //导入依赖的package包/类
@Override
public void onChange() {
synchronized(this.mutex){
this.activeCache.clear();
try {
for(CodingSchemeRendering cs :
this.getLexBigService().getSupportedCodingSchemes().getCodingSchemeRendering()){
if(cs.getRenderingDetail().getVersionStatus().equals(CodingSchemeVersionStatus.ACTIVE)){
this.activeCache.add(
this.getKey(
cs.getCodingSchemeSummary().getCodingSchemeURI(),
cs.getCodingSchemeSummary().getRepresentsVersion()));
}
}
} catch (LBInvocationException e) {
throw new IllegalStateException(e);
}
}
}
开发者ID:NCIP,
项目名称:lexevs-service,
代码行数:21,
代码来源:LexEvsResolvedValueSetQueryService.java
示例6: buildCaches
点赞 3
import org.LexGrid.LexBIG.Exceptions.LBInvocationException; //导入依赖的package包/类
protected void buildCaches() {
synchronized(this.mutex){
try {
for (CodingSchemeRendering csr : this.lexBigService
.getSupportedCodingSchemes().getCodingSchemeRendering()) {
CodingSchemeSummary summary = csr.getCodingSchemeSummary();
NameVersionPair nameVersionPair =
new NameVersionPair(
summary.getLocalName(),
summary.getRepresentsVersion());
String codeSystemVersionUri =
this.uriHandler.getCodeSystemVersionUri(summary);
this.uriToNameVersionPair.put(codeSystemVersionUri, nameVersionPair);
}
} catch (LBInvocationException e) {
this.log.warn(e);
}
}
}
开发者ID:NCIP,
项目名称:lexevs-service,
代码行数:23,
代码来源:CodeSystemVersionUriResolver.java
示例7: doGetCodingSchemeReferences
点赞 3
import org.LexGrid.LexBIG.Exceptions.LBInvocationException; //导入依赖的package包/类
private Set<CodingSchemeReference> doGetCodingSchemeReferences(String name){
Set<CodingSchemeReference> references = new HashSet<CodingSchemeReference>();
try {
for(CodingSchemeRendering scheme : lexBigService.getSupportedCodingSchemes().getCodingSchemeRendering()){
if(scheme.getCodingSchemeSummary().getLocalName().equals(name)){
CodingSchemeReference reference = new CodingSchemeReference();
reference.setCodingScheme(
scheme.getCodingSchemeSummary().getCodingSchemeURI());
reference.setVersionOrTag(
Constructors.createCodingSchemeVersionOrTagFromVersion(scheme.getCodingSchemeSummary().getRepresentsVersion()));
references.add(reference);
}
}
} catch (LBInvocationException e) {
return null;
}
return references;
}
开发者ID:NCIP,
项目名称:lexevs-service,
代码行数:21,
代码来源:CodeSystemVersionBulkDownloadController.java
示例8: getAvailableCodingSchemesString
点赞 3
import org.LexGrid.LexBIG.Exceptions.LBInvocationException; //导入依赖的package包/类
@SuppressWarnings("unused")
private String getAvailableCodingSchemesString(){
List<String> schemes = new ArrayList<String>();
try {
for(CodingSchemeRendering scheme : lexBigService.getSupportedCodingSchemes().getCodingSchemeRendering()){
if(scheme.getRenderingDetail().getVersionStatus().equals(CodingSchemeVersionStatus.ACTIVE)){
String name = scheme.getCodingSchemeSummary().getLocalName();
String version = scheme.getCodingSchemeSummary().getRepresentsVersion();
schemes.add(name + "[:" + version + "]");
}
}
} catch (LBInvocationException e) {
return "";
}
return StringUtils.join(schemes, ",");
}
开发者ID:NCIP,
项目名称:lexevs-service,
代码行数:18,
代码来源:CodeSystemVersionBulkDownloadController.java
示例9: get
点赞 3
import org.LexGrid.LexBIG.Exceptions.LBInvocationException; //导入依赖的package包/类
@Override
public ResolvedConceptReferenceList get(int start, int end)
throws LBResourceUnavailableException, LBInvocationException,
LBParameterException {
ResolvedConceptReferenceList list = new ResolvedConceptReferenceList();
if(start > 0 && start <= this.codedNodeList.size()){
if(end > 0 && end <= this.codedNodeList.size()){
for(int i=start; i < end; i++){
ResolvedConceptReference resolvedConceptReference = new ResolvedConceptReference();
String codingSchemeName = this.codedNodeList.get(i).getCodingScheme();
String codingSchemeVersion = this.codedNodeList.get(i).getVersion();
resolvedConceptReference.setCodingSchemeName(codingSchemeName);
resolvedConceptReference.setCodingSchemeVersion(codingSchemeVersion);
list.addResolvedConceptReference(resolvedConceptReference );
}
}
}
return list;
}
开发者ID:NCIP,
项目名称:lexevs-service,
代码行数:23,
代码来源:FakeResolvedConceptReferencesIteratorImpl.java
示例10: get
点赞 2
import org.LexGrid.LexBIG.Exceptions.LBInvocationException; //导入依赖的package包/类
/**
* Returns a specific range of items without altering cursor position.
*/
public ResolvedConceptReferenceList get(int start, int end) throws LBResourceUnavailableException,
LBInvocationException, LBParameterException {
verifyResources();
ResolvedConceptReferenceList result = new ResolvedConceptReferenceList();
int stop = Math.max(0, Math.min(scoredTerms.length, end));
if (start < 0 || stop < start)
throw new LBParameterException("Index out of bounds.");
for (int i = start; i < stop; i++)
result.addResolvedConceptReference(scoredTerms[i].ref);
return result;
}
开发者ID:NCIP,
项目名称:nci-term-browser,
代码行数:15,
代码来源:ScoredIterator.java
示例11: scroll
点赞 2
import org.LexGrid.LexBIG.Exceptions.LBInvocationException; //导入依赖的package包/类
/**
* Skips 'n' items which are available via getNext() until a call to next(),
* returning self.
*/
public ResolvedConceptReferencesIterator scroll(int maxToReturn) throws LBResourceUnavailableException,
LBInvocationException {
verifyResources();
scrolled = Math.max(0, Math.min(maxToReturn, numberRemaining()));
position += scrolled;
return this;
}
开发者ID:NCIP,
项目名称:nci-term-browser,
代码行数:12,
代码来源:ScoredIterator.java
示例12: next
点赞 2
import org.LexGrid.LexBIG.Exceptions.LBInvocationException; //导入依赖的package包/类
public ResolvedConceptReference next() throws LBResourceUnavailableException, LBInvocationException {
ResolvedConceptReferenceList rcrl = next(1);
if (rcrl.getResolvedConceptReferenceCount() == 0) {
return null;
} else {
return rcrl.getResolvedConceptReference(0);
}
}
开发者ID:NCIP,
项目名称:cadsr-semantic-tools,
代码行数:9,
代码来源:ResolvedConceptReferencesIteratorImpl.java
示例13: scroll
点赞 2
import org.LexGrid.LexBIG.Exceptions.LBInvocationException; //导入依赖的package包/类
public ResolvedConceptReferencesIterator scroll(int maxToReturn) throws LBResourceUnavailableException,
LBInvocationException {
if (!hasNext()) {
return null;
}
this.ref = next(maxToReturn);
return this;
}
开发者ID:NCIP,
项目名称:cadsr-semantic-tools,
代码行数:9,
代码来源:ResolvedConceptReferencesIteratorImpl.java
示例14: filterLexCodedNodeSet
点赞 2
import org.LexGrid.LexBIG.Exceptions.LBInvocationException; //导入依赖的package包/类
public static <T extends ResourceQuery> CodedNodeSet filterLexCodedNodeSet(CodedNodeSet lexCodedNodeSet, QueryData<T> queryData) throws LBParameterException, LBInvocationException {
if(lexCodedNodeSet != null){
// Apply restrictions if they exists
Set<EntityNameOrURI> cts2Entities = queryData.getCts2Entities();
lexCodedNodeSet = CommonSearchFilterUtils.filterLexCodedNodeSet(lexCodedNodeSet, cts2Entities);
// Apply filters if they exist
Set<ResolvedFilter> cts2Filters = queryData.getCts2Filters();
if(cts2Filters != null){
for(ResolvedFilter cts2Filter : cts2Filters){
lexCodedNodeSet = CommonSearchFilterUtils.filterLexCodedNodeSet(lexCodedNodeSet, cts2Filter);
}
}
ResolvedReadContext readContext = queryData.getReadContext();
if(readContext != null) {
if(readContext.getActive() == null ||
readContext.getActive().equals(ActiveOrAll.ACTIVE_AND_INACTIVE)){
// set to all
lexCodedNodeSet.restrictToStatus(ActiveOption.ALL, null);
}
else if (readContext.getActive().equals(ActiveOrAll.ACTIVE_ONLY)){
// set to active only
lexCodedNodeSet.restrictToStatus(ActiveOption.ACTIVE_ONLY, null);
}
}
}
return lexCodedNodeSet;
}
开发者ID:NCIP,
项目名称:lexevs-service,
代码行数:37,
代码来源:CommonSearchFilterUtils.java
示例15: buildCaches
点赞 2
import org.LexGrid.LexBIG.Exceptions.LBInvocationException; //导入依赖的package包/类
protected void buildCaches() {
synchronized(this.mutex){
this.lexgridToAliasMap.clear();
this.aliasToLexGridMap.clear();
this.lexgridUriToLexGridNameMap.clear();
try {
for (CodingSchemeRendering csr : this.lexBigService
.getSupportedCodingSchemes().getCodingSchemeRendering()) {
String lexgridName = csr.getCodingSchemeSummary()
.getLocalName();
String officialName = this.uriResolver.idToName(
lexgridName, IdType.CODE_SYSTEM);
if (StringUtils.isNotBlank(officialName)) {
this.aliasToLexGridMap.put(officialName, lexgridName);
String uri = this.uriResolver.idToUri(officialName, IdType.CODE_SYSTEM);
String baseUri = this.uriResolver.idToBaseUri(officialName);
if(StringUtils.isNotBlank(uri)){
this.aliasToLexGridMap.put(uri, lexgridName);
}
if(StringUtils.isNotBlank(baseUri)){
this.aliasToLexGridMap.put(baseUri, lexgridName);
}
this.lexgridToAliasMap.put(lexgridName, officialName);
}
this.lexgridUriToLexGridNameMap.put(csr.getCodingSchemeSummary().getCodingSchemeURI(), csr.getCodingSchemeSummary().getLocalName());
}
} catch (LBInvocationException e) {
this.log.warn(e);
}
}
}
开发者ID:NCIP,
项目名称:lexevs-service,
代码行数:37,
代码来源:DefaultCodingSchemeNameTranslator.java
示例16: createStringFromResolvedConceptReferenceIterator
点赞 2
import org.LexGrid.LexBIG.Exceptions.LBInvocationException; //导入依赖的package包/类
public static String createStringFromResolvedConceptReferenceIterator(ResolvedConceptReferencesIterator iterator) throws LBResourceUnavailableException, LBInvocationException{
StringBuffer results = new StringBuffer();
while(iterator.hasNext()){
String objectData = createStringFromResolvedConceptReferenceObject(iterator.next(), 0);
if(objectData != null){
appendLine(results, "", objectData + "\n=============\n\n");
}
}
return results.toString();
}
开发者ID:NCIP,
项目名称:lexevs-service,
代码行数:13,
代码来源:PrintUtility.java
示例17: resolve
点赞 2
import org.LexGrid.LexBIG.Exceptions.LBInvocationException; //导入依赖的package包/类
@Override
public ResolvedConceptReferencesIterator resolve(
SortOptionList sortOptions, LocalNameList propertyNames,
PropertyType[] propertyTypes) throws LBInvocationException,
LBParameterException {
ResolvedConceptReferencesIterator iterator = null;
iterator = new FakeResolvedConceptReferencesIteratorImpl(this.codedNodeList);
return iterator;
}
开发者ID:NCIP,
项目名称:lexevs-service,
代码行数:10,
代码来源:FakeCodedNodeSetImpl.java
示例18: resolveToList
点赞 2
import org.LexGrid.LexBIG.Exceptions.LBInvocationException; //导入依赖的package包/类
@Override
public ResolvedConceptReferenceList resolveToList(
SortOptionList sortOptions, LocalNameList propertyNames,
PropertyType[] propertyTypes, int maxToReturn)
throws LBInvocationException, LBParameterException {
// TODO Auto-generated method stub
return null;
}
开发者ID:NCIP,
项目名称:lexevs-service,
代码行数:9,
代码来源:FakeCodedNodeSetImpl.java
示例19: restrictToMatchingProperties
点赞 2
import org.LexGrid.LexBIG.Exceptions.LBInvocationException; //导入依赖的package包/类
@Override
public CodedNodeSet restrictToMatchingProperties(
LocalNameList propertyNames, PropertyType[] propertyTypes,
LocalNameList sourceList, LocalNameList contextList,
NameAndValueList qualifierList, String matchText,
String matchAlgorithm, String language)
throws LBInvocationException, LBParameterException {
// TODO Auto-generated method stub
return null;
}
开发者ID:NCIP,
项目名称:lexevs-service,
代码行数:11,
代码来源:FakeCodedNodeSetImpl.java
示例20: restrictToProperties
点赞 2
import org.LexGrid.LexBIG.Exceptions.LBInvocationException; //导入依赖的package包/类
@Override
public CodedNodeSet restrictToProperties(LocalNameList propertyList,
PropertyType[] propertyTypes) throws LBInvocationException,
LBParameterException {
// TODO Auto-generated method stub
return null;
}
开发者ID:NCIP,
项目名称:lexevs-service,
代码行数:8,
代码来源:FakeCodedNodeSetImpl.java
示例21: next
点赞 2
import org.LexGrid.LexBIG.Exceptions.LBInvocationException; //导入依赖的package包/类
/**
* Returns the next item and advances the cursor.
*/
public ResolvedConceptReference next() throws LBResourceUnavailableException, LBInvocationException {
verifyResources();
return hasNext() ? scoredTerms[position++].ref : null;
}
开发者ID:NCIP,
项目名称:nci-term-browser,
代码行数:8,
代码来源:ScoredIterator.java
示例22: hasNext
点赞 2
import org.LexGrid.LexBIG.Exceptions.LBInvocationException; //导入依赖的package包/类
@LgClientSideSafe
public boolean hasNext() throws LBResourceUnavailableException {
if(isExhausted){
return false;
}
if (codesToReturn_ == null) {
throw new LBResourceUnavailableException("This iterator is no longer valid.");
}
lastRead_ = System.currentTimeMillis();
boolean answer = false;
// I need to scan forward to get an accurate answer to hasNext() if
// filters are involved.
if (filters_ != null && filters_.length > 0) {
for (int i = pos_; i < codesToReturn_.getNumberOfCodes(); i++, pos_++) {
ResolvedConceptReference rcr;
try {
rcr = codeToReturnResolver.buildResolvedConceptReference(
getCodeToReturnFromCodeHolder(i),
this.restrictToProperties_,
this.restrictToPropertyTypes_,
this.filters_,
this.resolveEntities_);
if (rcr != null) {
answer = true;
break;
}
} catch (LBInvocationException e) {
getLogger().error("Unexected Error determining hasNext", e);
answer = true; // return true - they will likely call next()
// again, which
// will have the same problem - and it will throw the error
// back to them
}
}
} else {
answer = pos_ < codesToReturn_.getNumberOfCodes();
}
if (answer == false) {
isExhausted = true;
release();
}
return answer;
}
开发者ID:NCIP,
项目名称:cadsr-semantic-tools,
代码行数:48,
代码来源:ResolvedConceptReferencesIteratorImpl.java
示例23: doBuildResolvedConceptReference
点赞 2
import org.LexGrid.LexBIG.Exceptions.LBInvocationException; //导入依赖的package包/类
protected ResolvedConceptReference doBuildResolvedConceptReference(CodeToReturn codeToReturn,
LocalNameList restrictToProperties,
PropertyType[] restrictToPropertyTypes,
Filter[] filters,
boolean resolve) throws LBInvocationException {
SystemResourceService resourceManager = LexEvsServiceLocator.getInstance().getSystemResourceService();
// Always assign the basics...
ResolvedConceptReference rcr = new ResolvedConceptReference();
try {
rcr.setCodingSchemeURI(codeToReturn.getUri());
rcr.setCodingSchemeVersion(codeToReturn.getVersion());
rcr.setCode(codeToReturn.getCode());
rcr.setCodeNamespace(codeToReturn.getNamespace());
EntityDescription ed = new EntityDescription();
ed.setContent(codeToReturn.getEntityDescription());
rcr.setEntityDescription(ed);
rcr.setEntityType(codeToReturn.getEntityTypes());
rcr.setCodingSchemeName(
resourceManager.getInternalCodingSchemeNameForUserCodingSchemeName(codeToReturn.getUri(), codeToReturn.getVersion()));
} catch (LBParameterException e) {
// this should only happen when the codedNodeSet was constructed
// from a graph -
// and if a source or target concept in the graph is not available
// in the system.
rcr.setEntity(null);
}
// these (two) stay null by design
rcr.setSourceOf(null);
rcr.setTargetOf(null);
// these (two) stay null by design
rcr.setSourceOf(null);
rcr.setTargetOf(null);
if (filters != null && filters.length > 0) {
for (int i = 0; i < filters.length; i++) {
if (!filters[i].match(rcr)) {
return null;
}
}
}
return rcr;
}
开发者ID:NCIP,
项目名称:cadsr-semantic-tools,
代码行数:49,
代码来源:DefaultCodeToReturnResolver.java
示例24: intersect
点赞 2
import org.LexGrid.LexBIG.Exceptions.LBInvocationException; //导入依赖的package包/类
/**
*
* @see org.LexGrid.LexBIG.LexBIGService.CodedNodeSet#intersect(org.LexGrid.LexBIG.LexBIGService.CodedNodeSet)
*/
@LgClientSideSafe
public CodedNodeSet intersect(CodedNodeSet codes) throws LBInvocationException, LBParameterException {
return this;
}
开发者ID:NCIP,
项目名称:lexevs-service,
代码行数:9,
代码来源:FakeCodedNodeSetImpl.java
示例25: union
点赞 2
import org.LexGrid.LexBIG.Exceptions.LBInvocationException; //导入依赖的package包/类
/**
* @see org.LexGrid.LexBIG.LexBIGService.CodedNodeSet#union(org.LexGrid.LexBIG.LexBIGService.CodedNodeSet)
*/
@LgClientSideSafe
public CodedNodeSet union(CodedNodeSet codes) throws LBInvocationException, LBParameterException {
return this;
}
开发者ID:NCIP,
项目名称:lexevs-service,
代码行数:8,
代码来源:FakeCodedNodeSetImpl.java
示例26: restrictToMappingCodes
点赞 2
import org.LexGrid.LexBIG.Exceptions.LBInvocationException; //导入依赖的package包/类
@Override
public CodedNodeSet restrictToMappingCodes(ConceptReferenceList conceptReferenceList) throws LBParameterException, LBInvocationException {
return null;
}
开发者ID:NCIP,
项目名称:lexevs-service,
代码行数:5,
代码来源:FakeCodedNodeSetImpl.java
示例27: difference
点赞 2
import org.LexGrid.LexBIG.Exceptions.LBInvocationException; //导入依赖的package包/类
/**
*
* @see org.LexGrid.LexBIG.LexBIGService.CodedNodeSet#difference(org.LexGrid.LexBIG.LexBIGService.CodedNodeSet)
*/
@LgClientSideSafe
public CodedNodeSet difference(CodedNodeSet codesToRemove) throws LBInvocationException, LBParameterException {
return this;
}
开发者ID:NCIP,
项目名称:lexevs-service,
代码行数:9,
代码来源:FakeCodedNodeSetImpl.java
示例28: restrictToCodes
点赞 2
import org.LexGrid.LexBIG.Exceptions.LBInvocationException; //导入依赖的package包/类
@LgClientSideSafe
public CodedNodeSet restrictToCodes(ConceptReferenceList codeList) throws LBInvocationException,
LBParameterException {
return this;
}
开发者ID:NCIP,
项目名称:lexevs-service,
代码行数:6,
代码来源:FakeCodedNodeSetImpl.java
示例29: restrictToStatus
点赞 2
import org.LexGrid.LexBIG.Exceptions.LBInvocationException; //导入依赖的package包/类
@LgClientSideSafe
public CodedNodeSet restrictToStatus(ActiveOption activeOption, String[] conceptStatus)
throws LBInvocationException, LBParameterException {
return this;
}
开发者ID:NCIP,
项目名称:lexevs-service,
代码行数:6,
代码来源:FakeCodedNodeSetImpl.java
示例30: restrictToAnonymous
点赞 2
import org.LexGrid.LexBIG.Exceptions.LBInvocationException; //导入依赖的package包/类
@Override
public CodedNodeSet restrictToAnonymous(AnonymousOption anonymousOption)
throws LBInvocationException, LBParameterException {
return this;
}
开发者ID:NCIP,
项目名称:lexevs-service,
代码行数:6,
代码来源:FakeCodedNodeSetImpl.java
示例31: isCodeInSet
点赞 2
import org.LexGrid.LexBIG.Exceptions.LBInvocationException; //导入依赖的package包/类
@Override
public Boolean isCodeInSet(ConceptReference code)
throws LBInvocationException, LBParameterException {
// TODO Auto-generated method stub
return null;
}
开发者ID:NCIP,
项目名称:lexevs-service,
代码行数:7,
代码来源:FakeCodedNodeSetImpl.java
示例32: scroll
点赞 2
import org.LexGrid.LexBIG.Exceptions.LBInvocationException; //导入依赖的package包/类
@Override
public ResolvedConceptReferencesIterator scroll(int maxToReturn)
throws LBResourceUnavailableException, LBInvocationException {
// TODO Auto-generated method stub
return null;
}
开发者ID:NCIP,
项目名称:lexevs-service,
代码行数:7,
代码来源:FakeResolvedConceptReferencesIteratorImpl.java