in src/main/java/org/apache/sling/discovery/base/connectors/announcement/Announcement.java [105:111]
public Announcement(final String ownerId, int protocolVersion) {
if (ownerId==null || ownerId.length()==0) {
throw new IllegalArgumentException("ownerId must not be null or empty");
}
this.ownerId = ownerId;
this.protocolVersion = protocolVersion;
}