Skip to content

Commit

Permalink
Change default to BUSDOX_THEN_PEPPOL
Browse files Browse the repository at this point in the history
  • Loading branch information
phax committed Sep 5, 2024
1 parent 1c398e5 commit c7c27bf
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
*/
public class AS4EndpointDetailProviderPeppol implements IAS4EndpointDetailProvider
{
public static final EMode DEFAULT_WILDCARD_SELECTION_MODE = EMode.WILDCARD_ONLY;
public static final EMode DEFAULT_WILDCARD_SELECTION_MODE = EMode.BUSDOX_THEN_WILDCARD;
public static final ISMPTransportProfile DEFAULT_TRANSPORT_PROFILE = ESMPTransportProfile.TRANSPORT_PROFILE_PEPPOL_AS4_V2;

private static final Logger LOGGER = LoggerFactory.getLogger (AS4EndpointDetailProviderPeppol.class);
Expand Down Expand Up @@ -304,9 +304,10 @@ public String getReceiverAPEndpointURL () throws Phase4Exception
@Override
public String toString ()
{
return new ToStringGenerator (null).append ("ServiceMetadataProvider", m_aServiceMetadataProvider)
return new ToStringGenerator (null).append ("ServiceGroupProvider", m_aServiceGroupProvider)
.append ("ServiceMetadataProvider", m_aServiceMetadataProvider)
.append ("WildcardSelectionMode", m_eWildcardSelectionMode)
.append ("TransportProfile", m_aTP)
.append ("EndpointSelectionMode", m_eWildcardSelectionMode)
.appendIfNotNull ("Endpoint", m_aEndpoint)
.getToString ();
}
Expand Down

0 comments on commit c7c27bf

Please sign in to comment.