Ejemplo n.º 1
0
 public void setAcceptedCallingAETitles(String... aets) {
   acceptedCallingAETitlesSet.clear();
   for (String name : aets) acceptedCallingAETitlesSet.add(name);
 }
Ejemplo n.º 2
0
 public boolean isAcceptedCallingAETitle(String aet) {
   return acceptedCallingAETitlesSet.isEmpty() || acceptedCallingAETitlesSet.contains(aet);
 }
Ejemplo n.º 3
0
 public String[] getAcceptedCallingAETitles() {
   return acceptedCallingAETitlesSet.toArray(new String[acceptedCallingAETitlesSet.size()]);
 }