/**
  * Identifies the licensor of the software (tag: software_licensor).
  *
  * @param softwareLicensorName software licensor name
  * @param softwareLicensorRegId software licensor registration ID
  * @return a reference to this object.
  */
 public DefaultSwidProcessor setSoftwareLicensor(
     final String softwareLicensorName, final String softwareLicensorRegId) {
   swidTag.setSoftwareLicensor(
       new EntityComplexType(
           new Token(softwareLicensorName, idGenerator.nextId()),
           new RegistrationId(softwareLicensorRegId, idGenerator.nextId()),
           idGenerator.nextId()));
   return this;
 }