package io.delphi.qa.auto.awsmfrw.common_baby;

import io.delphi.qa.auto.awsmfrw.models.EnDelphiHelperClassItems;

public interface ICanProvideResources {

  default String throwDefault() {
//    throw new FeatureNotImplementedException("Unnecessary Or not implemented yet.");
    return "default";
  }

  String resourceName();

  String resourceLocator();

  String resourceValue();

  EnDelphiHelperClassItems resourceClient();
}
