if (this.configuration == null) {
// Check all the properties of this source ...
String name = getName();
if (name == null) {
I18n msg = GraphI18n.namePropertyIsRequiredForFederatedRepositorySource;
throw new RepositorySourceException(getName(), msg.text("name"));
}
RepositoryContext repositoryContext = getRepositoryContext();
if (repositoryContext == null) {
I18n msg = GraphI18n.federatedRepositorySourceMustBeInitialized;
throw new RepositorySourceException(getName(), msg.text("name", name));