Say I follow the Single Responsibility Principle and I have the following classes.
public class Extractor {
   public Container extract(List<Container> list) {
       ... some extraction
   }
}
public class Converter {
   public String convert(Container container) {
       ... some conversion
   }
}
As you can see it's following the principle and all the names of the classes/methods tell what they do. Now I have another class that has a method like this.
public class SomeClass {
   private Extractor extractor = new Extractor();
   private Converter converter = new Converter();
   private Queue queue = new Queue();
   public void someMethod(List<Container> list) {
       Container tmp = extractor.extract(list);
       String result = converter.convert(tmp);
       queue.add(result);
   }
}
As you can see the "someMethod"-Method does call extract, convert and add. My question is now, how do you call such a class/method? It's not actually extracting, converting or adding but it's calling those? If you name the method after its responsibility what would that be?