Package com.pixelmed.network
Interface AbstractSyntaxSelectionPolicy
-
- All Known Implementing Classes:
CompositeInstanceStoreAbstractSyntaxSelectionPolicy,CompositeInstanceStoreFindMoveGetAbstractSyntaxSelectionPolicy
public interface AbstractSyntaxSelectionPolicyImplementations of this interface accept or reject Presentation Contexts from a list based on their Abstract Syntax.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.LinkedListapplyAbstractSyntaxSelectionPolicy(java.util.LinkedList presentationContexts, int associationNumber)Accept or reject Abstract Syntaxes (SOP Classes).java.util.LinkedListapplyAbstractSyntaxSelectionPolicy(java.util.LinkedList presentationContexts, int associationNumber, int debugLevel)Accept or reject Abstract Syntaxes (SOP Classes).
-
-
-
Method Detail
-
applyAbstractSyntaxSelectionPolicy
java.util.LinkedList applyAbstractSyntaxSelectionPolicy(java.util.LinkedList presentationContexts, int associationNumber, int debugLevel)Accept or reject Abstract Syntaxes (SOP Classes). Should be called before Transfer Syntax selection is performed.- Parameters:
presentationContexts- a java.util.LinkedList ofPresentationContextobjects, each of which contains an Abstract Syntax (SOP Class UID)associationNumber- used for debugging messagesdebugLevel- ignored- Returns:
- the java.util.LinkedList of
PresentationContextobjects, as supplied but with the result/reason field set to either "acceptance" or "abstract syntax not supported (provider rejection)"
-
applyAbstractSyntaxSelectionPolicy
java.util.LinkedList applyAbstractSyntaxSelectionPolicy(java.util.LinkedList presentationContexts, int associationNumber)Accept or reject Abstract Syntaxes (SOP Classes). Should be called before Transfer Syntax selection is performed.- Parameters:
presentationContexts- a java.util.LinkedList ofPresentationContextobjects, each of which contains an Abstract Syntax (SOP Class UID)associationNumber- used for debugging messages- Returns:
- the java.util.LinkedList of
PresentationContextobjects, as supplied but with the result/reason field set to either "acceptance" or "abstract syntax not supported (provider rejection)"
-
-