/**
  * Get the name of this algorithm, return null if no algorithm set.
  *
  * @return
  */
 @Basic
 public String getAlgorithmName() {
   if (algorithm != null) {
     return algorithm.getName();
   } else {
     return null;
   }
 }