producer XML configuration support: Producers can be set up using an XML input
[mir.git] / source / mircoders / localizer / MirLocalizer.java
1 package mircoders.localizer;
2
3 public interface MirLocalizer {
4   public MirProducerLocalizer producers() throws MirLocalizerFailure, MirLocalizerException;
5   public MirOpenPostingLocalizer openPostings() throws MirLocalizerFailure, MirLocalizerException;
6   public MirProducerAssistantLocalizer producerAssistant() throws MirLocalizerFailure, MirLocalizerException;
7   public MirGeneratorLocalizer generators() throws MirLocalizerFailure, MirLocalizerException;
8   public MirDataModelLocalizer dataModel() throws MirLocalizerFailure, MirLocalizerException;
9 }