use of com.helger.phase4.model.pmode.leg.PModePayloadProfile in project phase4 by phax.
the class PModeMicroTypeConverterTest method _createPModePayloadProfile.
@Nonnull
@ReturnsMutableCopy
private ICommonsOrderedMap<String, PModePayloadProfile> _createPModePayloadProfile() {
final PModePayloadProfile aPModePayloadProfile = new PModePayloadProfile("name", new MimeType(EMimeContentType.EXAMPLE, "example"), "xsdfilename", Integer.valueOf(20001), EMandatory.MANDATORY);
final ICommonsOrderedMap<String, PModePayloadProfile> aPModePayloadProfiles = new CommonsLinkedHashMap<>();
aPModePayloadProfiles.put(aPModePayloadProfile.getName(), aPModePayloadProfile);
return aPModePayloadProfiles;
}
Aggregations