protected String id;
public DefaultDomainProvider(String id, Bundle bundle, Class<? extends Domain> domainInterface,
Class<? extends DomainEvents> domainEventInterface) {
this.id = id;
strings = new BundleStrings(bundle);
this.domainInterface = domainInterface;
this.domainEventInterface = domainEventInterface;
}