congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
TransferCapability.setSopClass
Code IndexAdd Tabnine to your IDE (free)

How to use
setSopClass
method
in
org.dcm4che3.net.TransferCapability

Best Java code snippets using org.dcm4che3.net.TransferCapability.setSopClass (Showing top 6 results out of 315)

origin: dcm4che/dcm4che

public TransferCapability(String commonName, String sopClass, Role role,
    String... transferSyntaxes) {
  setCommonName(commonName);
  setSopClass(sopClass);
  setRole(role);
  setTransferSyntaxes(transferSyntaxes);
}
origin: org.dcm4che/dcm4che-net

public TransferCapability(String commonName, String sopClass, Role role,
    String... transferSyntaxes) {
  setCommonName(commonName);
  setSopClass(sopClass);
  setRole(role);
  setTransferSyntaxes(transferSyntaxes);
}
origin: dcm4che/dcm4che

private void loadFrom(TransferCapability tc, Attributes attrs) throws NamingException {
  tc.setCommonName(LdapUtils.stringValue(attrs.get("cn"), null));
  tc.setSopClass(LdapUtils.stringValue(attrs.get("dicomSOPClass"), null));
  tc.setRole(TransferCapability.Role.valueOf(
      LdapUtils.stringValue(attrs.get("dicomTransferRole"), null)));
  tc.setTransferSyntaxes(LdapUtils.stringArray(attrs.get("dicomTransferSyntax")));
  if (!LdapUtils.hasObjectClass(attrs, "dcmTransferCapability"))
    return;
  tc.setPreferredTransferSyntaxes(LdapUtils.removeOrdinalPrefix(
      LdapUtils.stringArray(attrs.get("dcmPreferredTransferSyntax"))));
  tc.setQueryOptions(toQueryOptions(attrs));
  tc.setStorageOptions(toStorageOptions(attrs));
}
origin: org.dcm4che/dcm4che-conf-ldap

private void loadFrom(TransferCapability tc, Attributes attrs) throws NamingException {
  tc.setCommonName(LdapUtils.stringValue(attrs.get("cn"), null));
  tc.setSopClass(LdapUtils.stringValue(attrs.get("dicomSOPClass"), null));
  tc.setRole(TransferCapability.Role.valueOf(
      LdapUtils.stringValue(attrs.get("dicomTransferRole"), null)));
  tc.setTransferSyntaxes(LdapUtils.stringArray(attrs.get("dicomTransferSyntax")));
  if (!LdapUtils.hasObjectClass(attrs, "dcmTransferCapability"))
    return;
  tc.setPreferredTransferSyntaxes(LdapUtils.removeOrdinalPrefix(
      LdapUtils.stringArray(attrs.get("dcmPreferredTransferSyntax"))));
  tc.setQueryOptions(toQueryOptions(attrs));
  tc.setStorageOptions(toStorageOptions(attrs));
}
origin: dcm4che/dcm4che

  break;
case "dicomSOPClass":
  tc.setSopClass(reader.stringValue());
  break;
case "dicomTransferRole":
origin: org.dcm4che/dcm4che-conf-json

  break;
case "dicomSOPClass":
  tc.setSopClass(reader.stringValue());
  break;
case "dicomTransferRole":
org.dcm4che3.netTransferCapabilitysetSopClass

Popular methods of TransferCapability

  • <init>
  • getSopClass
    Get the SOP Class of this Transfer Capability object.
  • getTransferSyntaxes
    Get the transfer syntax(es) that may be requested as an SCU or that are offered as an SCP.
  • setCommonName
  • setRole
  • setTransferSyntaxes
  • getCommonName
    get the name of the Transfer Capability object. Can be a meaningful name or any unique sequence of c
  • getQueryOptions
  • getRole
    Get the role for this TransferCapabilityinstance.
  • getStorageOptions
  • setQueryOptions
  • getPreferredTransferSyntaxes
  • setQueryOptions,
  • getPreferredTransferSyntaxes,
  • setPreferredTransferSyntaxes,
  • setStorageOptions,
  • containsTransferSyntax,
  • deepCopy,
  • promptTo,
  • retainAcceptable,
  • selectTransferSyntax

Popular in Java

  • Creating JSON documents from java classes using gson
  • requestLocationUpdates (LocationManager)
  • compareTo (BigDecimal)
  • getExternalFilesDir (Context)
  • Table (com.google.common.collect)
    A collection that associates an ordered pair of keys, called a row key and a column key, with a sing
  • URLEncoder (java.net)
    This class is used to encode a string using the format required by application/x-www-form-urlencoded
  • TimeZone (java.util)
    TimeZone represents a time zone offset, and also figures out daylight savings. Typically, you get a
  • Executor (java.util.concurrent)
    An object that executes submitted Runnable tasks. This interface provides a way of decoupling task s
  • DataSource (javax.sql)
    An interface for the creation of Connection objects which represent a connection to a database. This
  • JComboBox (javax.swing)
  • Top Vim plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now