Examples of validateRetrieveKeys()


Examples of org.dcm4che3.net.service.QueryRetrieveLevel.validateRetrieveKeys()

        protected RetrieveTask calculateMatches(Association as, PresentationContext pc,
                Attributes rq, Attributes keys) throws DicomServiceException {
            QueryRetrieveLevel level = withoutBulkData
                    ? QueryRetrieveLevel.IMAGE
                    : QueryRetrieveLevel.valueOf(keys, qrLevels);
            level.validateRetrieveKeys(keys, rootLevel, relational(as, rq));
            List<InstanceLocator> matches = DcmQRSCP.this.calculateMatches(keys);
            if (matches.isEmpty())
                return null;

            RetrieveTaskImpl retrieveTask = new RetrieveTaskImpl(
View Full Code Here

Examples of org.dcm4che3.net.service.QueryRetrieveLevel.validateRetrieveKeys()

        @Override
        protected RetrieveTask calculateMatches(Association as, PresentationContext pc,
                final Attributes rq, Attributes keys) throws DicomServiceException {
            QueryRetrieveLevel level = QueryRetrieveLevel.valueOf(keys, qrLevels);
            level.validateRetrieveKeys(keys, rootLevel, relational(as, rq));
            String moveDest = rq.getString(Tag.MoveDestination);
            final Connection remote = getRemoteConnection(moveDest);
            if (remote == null)
                throw new DicomServiceException(Status.MoveDestinationUnknown,
                        "Move Destination: " + moveDest + " unknown");
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.