use of com.helger.peppolid.IProcessIdentifier in project peppol-commons by phax.
the class SMPClientTest method testCRUDServiceRegistration.
@Test
public void testCRUDServiceRegistration() throws Exception {
final SMPClient aSMPClient = new SMPClient(SMP_URI);
aSMPClient.saveServiceGroup(MockSMPClientConfig.getParticipantID(), SMP_CREDENTIALS);
final IParticipantIdentifier aServiceGroupID = MockSMPClientConfig.getParticipantID();
final IDocumentTypeIdentifier aDocumentID = MockSMPClientConfig.getDocumentTypeID();
final IProcessIdentifier aProcessID = MockSMPClientConfig.getProcessTypeID();
final ServiceInformationType aServiceInformation = new ServiceInformationType();
{
final ProcessListType aProcessList = new ProcessListType();
{
final ProcessType aProcess = new ProcessType();
{
final ServiceEndpointList aServiceEndpointList = new ServiceEndpointList();
{
final EndpointType aEndpoint = new EndpointType();
final W3CEndpointReference aEndpointReferenceType = new W3CEndpointReferenceBuilder().address("http://peppol.eu/sampleService/").build();
aEndpoint.setEndpointReference(aEndpointReferenceType);
aEndpoint.setTransportProfile(ESMPTransportProfile.TRANSPORT_PROFILE_AS2.getID());
// Certificate: Base64.encodeBytes (certificate.getEncoded ());
aEndpoint.setCertificate("1234567890");
aEndpoint.setServiceActivationDate(PDTFactory.getCurrentXMLOffsetDateTime());
aEndpoint.setServiceDescription("TEST DESCRIPTION");
aEndpoint.setServiceExpirationDate(PDTFactory.getCurrentXMLOffsetDateTime().plusYears(1));
aEndpoint.setTechnicalContactUrl("mailto:smpclient.unittest@helger.com");
aEndpoint.setMinimumAuthenticationLevel("2");
aEndpoint.setRequireBusinessLevelSignature(false);
aServiceEndpointList.getEndpoint().add(aEndpoint);
}
aProcess.setProcessIdentifier(new SimpleProcessIdentifier(aProcessID));
aProcess.setServiceEndpointList(aServiceEndpointList);
}
aProcessList.getProcess().add(aProcess);
}
aServiceInformation.setDocumentIdentifier(new SimpleDocumentTypeIdentifier(aDocumentID));
aServiceInformation.setParticipantIdentifier(new SimpleParticipantIdentifier(aServiceGroupID));
aServiceInformation.setProcessList(aProcessList);
}
aSMPClient.saveServiceInformation(aServiceInformation, SMP_CREDENTIALS);
final SignedServiceMetadataType aSignedServiceMetadata = aSMPClient.getServiceMetadata(aServiceGroupID, aDocumentID);
LOGGER.info("Service aMetadata ID:" + aSignedServiceMetadata.getServiceMetadata().getServiceInformation().getParticipantIdentifier().getValue());
aSMPClient.deleteServiceRegistration(aServiceGroupID, aDocumentID, SMP_CREDENTIALS);
aSMPClient.deleteServiceGroup(MockSMPClientConfig.getParticipantID(), SMP_CREDENTIALS);
}
use of com.helger.peppolid.IProcessIdentifier in project peppol-commons by phax.
the class MainSMPClientCaseSensitivity method main.
public static void main(final String[] args) throws Exception {
final IParticipantIdentifier participantId = PeppolIdentifierFactory.INSTANCE.createParticipantIdentifierWithDefaultScheme("0088:5060510050006");
LOGGER.info("Participant: " + participantId.getURIEncoded());
LOGGER.info("Participant ID case INsensitive: " + PeppolIdentifierFactory.INSTANCE.isParticipantIdentifierCaseInsensitive(participantId.getScheme()));
final SMPClientReadOnly smpClient = new SMPClientReadOnly(PeppolURLProvider.INSTANCE, participantId, ESML.DIGIT_PRODUCTION);
smpClient.setXMLSchemaValidation(false);
final IDocumentTypeIdentifier doctypeId = PeppolIdentifierFactory.INSTANCE.createDocumentTypeIdentifierWithDefaultScheme("urn:oasis:names:specification:ubl:schema:xsd:Order-2::Order##urn:www.cenbii.eu:transaction:biitrns001:ver2.0:extended:urn:www.peppol.eu:bis:peppol28a:ver1.0::2.1");
LOGGER.info("DocType: " + doctypeId.getURIEncoded());
LOGGER.info("DocType ID case INsensitive: " + PeppolIdentifierFactory.INSTANCE.isDocumentTypeIdentifierCaseInsensitive(doctypeId.getScheme()));
IProcessIdentifier processId = PeppolIdentifierFactory.INSTANCE.createProcessIdentifierWithDefaultScheme("URN:WWW.CENBII.EU:PROFILE:BII28:VER2.0");
LOGGER.info("Process[1]: " + processId.getURIEncoded());
LOGGER.info("Process ID case INsensitive: " + PeppolIdentifierFactory.INSTANCE.isProcessIdentifierCaseInsensitive(processId.getScheme()));
EndpointType endpoint = smpClient.getEndpoint(participantId, doctypeId, processId, ESMPTransportProfile.TRANSPORT_PROFILE_AS2);
LOGGER.info("1 - " + endpoint);
// Won't work, because process identifiers in PEPPOL are case sensitive!
processId = PeppolIdentifierFactory.INSTANCE.createProcessIdentifierWithDefaultScheme("urn:www.cenbii.eu:profile:bii28:ver2.0");
LOGGER.info("Process[2]: " + processId.getURIEncoded());
LOGGER.info("Process ID case INsensitive: " + PeppolIdentifierFactory.INSTANCE.isProcessIdentifierCaseInsensitive(processId.getScheme()));
endpoint = smpClient.getEndpoint(participantId, doctypeId, processId, ESMPTransportProfile.TRANSPORT_PROFILE_AS2);
LOGGER.info("2 - " + endpoint);
}
use of com.helger.peppolid.IProcessIdentifier in project peppol-commons by phax.
the class MainCreatePredefinedEnumsFromXML_v8x method _handleDocumentTypes.
private static void _handleDocumentTypes(final Document aDocumentSheet) {
final PCLDocumentTypesType aList = new GenericJAXBMarshaller<>(PCLDocumentTypesType.class, new QName("dummy")).read(aDocumentSheet);
// Create Java source
try {
final JDefinedClass jEnum = CM._package(RESULT_PACKAGE_PREFIX + "doctype")._enum("EPredefinedDocumentTypeIdentifier")._implements(IPeppolPredefinedDocumentTypeIdentifier.class);
jEnum.annotate(CodingStyleguideUnaware.class);
jEnum.javadoc().add(DO_NOT_EDIT);
// Add metadata
jEnum.field(JMod.PUBLIC_STATIC_FINAL, CM.ref(String.class), "CODE_LIST_VERSION", JExpr.lit(aList.getVersion()));
jEnum.field(JMod.PUBLIC_STATIC_FINAL, CM.INT, "CODE_LIST_ENTRY_COUNT", JExpr.lit(aList.getEntryCount().intValue()));
final ICommonsSet<String> aAllShortcutNames = new CommonsHashSet<>();
// Add all enum constants
for (final PCLDocumentTypeType aRow : aList.getDocumentType()) {
final String sProfileCode = aRow.getName();
final String sScheme = aRow.getScheme();
final String sValue = aRow.getValue();
final String sInitialRelease = aRow.getInitialRelease();
final EPeppolCodeListItemState eState = _getState(aRow.getState());
final boolean bDeprecated = !eState.isActive();
final String sDeprecationRelease = aRow.getDeprecationRelease();
final LocalDate aRemovalDate = aRow.getRemovalDateLocal();
// Split ID in it's pieces
final IPeppolDocumentTypeIdentifierParts aDocIDParts = PeppolDocumentTypeIdentifierParts.extractFromString(sValue);
final String sEnumConstName = RegExHelper.getAsIdentifier(sValue);
if (jEnum.getEnumConstantOfName(sEnumConstName) != null) {
// Avoid weird side effects
throw new IllegalStateException("The enum constant '" + sEnumConstName + "' is already in use");
}
final JEnumConstant jEnumConst = jEnum.enumConstant(sEnumConstName);
if (bDeprecated) {
jEnumConst.annotate(Deprecated.class);
jEnumConst.javadoc().addDeprecated().add("since " + sDeprecationRelease + " - this item should not be used to issue new identifiers!");
}
jEnumConst.arg(JExpr.lit(sScheme));
{
final JInvocation aNew = JExpr._new(CM.ref(PeppolDocumentTypeIdentifierParts.class)).arg(aDocIDParts.getRootNS()).arg(aDocIDParts.getLocalName()).arg(aDocIDParts.getCustomizationID()).arg(aDocIDParts.getVersion());
jEnumConst.arg(aNew);
}
jEnumConst.arg(JExpr.lit(sProfileCode));
jEnumConst.arg(CM.ref(Version.class).staticInvoke("parse").arg(sInitialRelease));
jEnumConst.arg(CM.ref(EPeppolCodeListItemState.class).enumConstantRef(eState));
jEnumConst.arg(bDeprecated ? CM.ref(Version.class).staticInvoke("parse").arg(sDeprecationRelease) : JExpr._null());
jEnumConst.arg(_asExpr(aRemovalDate));
jEnumConst.arg(JExpr.lit(aRow.isIssuedByOpenpeppol()));
jEnumConst.arg(JExpr.lit(StringParser.parseInt(aRow.getBisVersion(), -1)));
jEnumConst.arg(aRow.getDomainCommunity() == null ? JExpr._null() : JExpr.lit(aRow.getDomainCommunity()));
{
final JInvocation aNew = JExpr._new(CM.ref(CommonsArrayList.class).narrowEmpty());
for (final PCLProcessIDType aProcID : aRow.getProcessId()) aNew.arg(CIdentifier.getURIEncoded(aProcID.getScheme(), aProcID.getValue()));
jEnumConst.arg(aNew);
}
jEnumConst.javadoc().add("<code>" + sValue + "</code><br>");
jEnumConst.javadoc().addTag(JDocComment.TAG_SINCE).add("code list " + sInitialRelease);
// Also create a shortcut for more readable names
final String sShortcutName = CodeGenerationHelper.createShortcutDocumentTypeIDName(aDocIDParts);
if (sShortcutName != null) {
// Make unique name
int nNext = 2;
String sRealShortcutName = sShortcutName;
while (!aAllShortcutNames.add(sRealShortcutName)) {
sRealShortcutName = sShortcutName + nNext;
nNext++;
}
final JFieldVar aShortcut = jEnum.field(JMod.PUBLIC | JMod.STATIC | JMod.FINAL, jEnum, sRealShortcutName, jEnumConst);
aShortcut.javadoc().add("Same as {@link #" + sEnumConstName + "}");
if (bDeprecated) {
aShortcut.annotate(Deprecated.class);
aShortcut.javadoc().addDeprecated().add("since " + sDeprecationRelease + " - this item should not be used to issue new identifiers!");
}
jEnumConst.javadoc().add("\nSame as {@link #" + sRealShortcutName + "}");
}
}
// fields
final JFieldVar fScheme = jEnum.field(JMod.PRIVATE | JMod.FINAL, String.class, "m_sScheme");
final JFieldVar fParts = jEnum.field(JMod.PRIVATE | JMod.FINAL, IPeppolDocumentTypeIdentifierParts.class, "m_aParts");
final JFieldVar fID = jEnum.field(JMod.PRIVATE | JMod.FINAL, String.class, "m_sID");
final JFieldVar fProfileCode = jEnum.field(JMod.PRIVATE | JMod.FINAL, String.class, "m_sProfileCode");
final JFieldVar fInitialRelease = jEnum.field(JMod.PRIVATE | JMod.FINAL, Version.class, "m_aInitialRelease");
final JFieldVar fState = jEnum.field(JMod.PRIVATE | JMod.FINAL, EPeppolCodeListItemState.class, "m_eState");
final JFieldVar fDeprecationRelease = jEnum.field(JMod.PRIVATE | JMod.FINAL, Version.class, "m_aDeprecationRelease");
final JFieldVar fRemovalDate = jEnum.field(JMod.PRIVATE | JMod.FINAL, LocalDate.class, "m_aRemovalDate");
final JFieldVar fIssuedByOpenPeppol = jEnum.field(JMod.PRIVATE | JMod.FINAL, boolean.class, "m_bIssuedByOpenPeppol");
final JFieldVar fBISVersion = jEnum.field(JMod.PRIVATE | JMod.FINAL, int.class, "m_nBISVersion");
final JFieldVar fDomainCommunity = jEnum.field(JMod.PRIVATE | JMod.FINAL, String.class, "m_sDomainCommunity");
final JFieldVar fProcessIDs = jEnum.field(JMod.PRIVATE | JMod.FINAL, CM.ref(ICommonsList.class).narrow(IProcessIdentifier.class), "m_aProcessIDs");
// Constructor
final JMethod jCtor = jEnum.constructor(0);
final JVar jScheme = jCtor.param(JMod.FINAL, String.class, "sScheme");
jScheme.annotate(Nonnull.class);
jScheme.annotate(Nonempty.class);
final JVar jParts = jCtor.param(JMod.FINAL, IPeppolDocumentTypeIdentifierParts.class, "aParts");
jParts.annotate(Nonnull.class);
final JVar jProfileCode = jCtor.param(JMod.FINAL, String.class, "sProfileCode");
jProfileCode.annotate(Nonnull.class);
jProfileCode.annotate(Nonempty.class);
final JVar jInitialRelease = jCtor.param(JMod.FINAL, Version.class, "aInitialRelease");
jInitialRelease.annotate(Nonnull.class);
final JVar jState = jCtor.param(JMod.FINAL, EPeppolCodeListItemState.class, "eState");
jState.annotate(Nonnull.class);
final JVar jDeprecationRelease = jCtor.param(JMod.FINAL, Version.class, "aDeprecationRelease");
jDeprecationRelease.annotate(Nullable.class);
final JVar jRemovalDate = jCtor.param(JMod.FINAL, LocalDate.class, "aRemovalDate");
jRemovalDate.annotate(Nullable.class);
final JVar jIssuedByOpenPeppol = jCtor.param(JMod.FINAL, boolean.class, "bIssuedByOpenPeppol");
final JVar jBISVersion = jCtor.param(JMod.FINAL, int.class, "nBISVersion");
final JVar jDomainCommunity = jCtor.param(JMod.FINAL, String.class, "sDomainCommunity");
jDomainCommunity.annotate(Nullable.class);
final JVar jProcessIDs = jCtor.param(JMod.FINAL, CM.ref(ICommonsList.class).narrow(String.class), "aProcessIDs");
jCtor.body().assign(fScheme, jScheme).assign(fParts, jParts).assign(fProfileCode, jProfileCode).assign(fID, fParts.invoke("getAsDocumentTypeIdentifierValue")).assign(fInitialRelease, jInitialRelease).assign(fState, jState).assign(fDeprecationRelease, jDeprecationRelease).assign(fRemovalDate, jRemovalDate).assign(fIssuedByOpenPeppol, jIssuedByOpenPeppol).assign(fBISVersion, jBISVersion).assign(fDomainCommunity, jDomainCommunity).assign(fProcessIDs, CM.ref(CommonsArrayList.class).narrowEmpty()._new().arg(jProcessIDs).arg(new JLambdaMethodRef(CM.ref(PeppolIdentifierFactory.class).staticRef("INSTANCE"), "parseProcessIdentifier")));
// public String getScheme ()
JMethod m = jEnum.method(JMod.PUBLIC, String.class, "getScheme");
m.annotate(Nonnull.class);
m.annotate(Nonempty.class);
m.body()._return(fScheme);
// public String getValue ()
m = jEnum.method(JMod.PUBLIC, String.class, "getValue");
m.annotate(Nonnull.class);
m.annotate(Nonempty.class);
m.body()._return(fID);
// public String getRootNS ()
m = jEnum.method(JMod.PUBLIC, String.class, "getRootNS");
m.annotate(Nonnull.class);
m.annotate(Nonempty.class);
m.body()._return(fParts.invoke(m.name()));
// public String getLocalName ()
m = jEnum.method(JMod.PUBLIC, String.class, "getLocalName");
m.annotate(Nonnull.class);
m.annotate(Nonempty.class);
m.body()._return(fParts.invoke(m.name()));
// public String getSubTypeIdentifier ()
m = jEnum.method(JMod.PUBLIC, String.class, "getSubTypeIdentifier");
m.annotate(Nonnull.class);
m.annotate(Nonempty.class);
m.body()._return(fParts.invoke(m.name()));
if (false) {
// public String getTransactionID ()
m = jEnum.method(JMod.PUBLIC, String.class, "getTransactionID");
m.annotate(Nonnull.class);
m.annotate(Nonempty.class);
m.body()._return(fParts.invoke(m.name()));
// public List<String> getExtensionIDs ()
m = jEnum.method(JMod.PUBLIC, CM.ref(ICommonsList.class).narrow(String.class), "getExtensionIDs");
m.annotate(Nonnull.class);
m.annotate(ReturnsMutableCopy.class);
m.body()._return(fParts.invoke(m.name()));
}
// public String getCustomizationID ()
m = jEnum.method(JMod.PUBLIC, String.class, "getCustomizationID");
m.annotate(Nonnull.class);
m.annotate(Nonempty.class);
m.body()._return(fParts.invoke(m.name()));
// public String getVersion ()
m = jEnum.method(JMod.PUBLIC, String.class, "getVersion");
m.annotate(Nonnull.class);
m.annotate(Nonempty.class);
m.body()._return(fParts.invoke(m.name()));
// public String getCommonName ()
m = jEnum.method(JMod.PUBLIC, String.class, "getCommonName");
m.annotate(Nonnull.class);
m.annotate(Nonempty.class);
m.body()._return(fProfileCode);
// public String getAsDocumentTypeIdentifierValue ()
m = jEnum.method(JMod.PUBLIC, String.class, "getAsDocumentTypeIdentifierValue");
m.annotate(Nonnull.class);
m.annotate(Nonempty.class);
m.body()._return(fID);
// public PeppolDocumentTypeIdentifier getAsDocumentTypeIdentifier ()
m = jEnum.method(JMod.PUBLIC, PeppolDocumentTypeIdentifier.class, "getAsDocumentTypeIdentifier");
m.annotate(Nonnull.class);
m.body()._return(JExpr._new(CM.ref(PeppolDocumentTypeIdentifier.class)).arg(JExpr._this()));
// public IPeppolDocumentTypeIdentifierParts getParts
m = jEnum.method(JMod.PUBLIC, IPeppolDocumentTypeIdentifierParts.class, "getParts");
m.annotate(Nonnull.class);
m.body()._return(fParts);
// public Version getInitialRelease ()
m = jEnum.method(JMod.PUBLIC, Version.class, "getInitialRelease");
m.annotate(Nonnull.class);
m.body()._return(fInitialRelease);
// public EPeppolCodeListItemState getState ()
m = jEnum.method(JMod.PUBLIC, EPeppolCodeListItemState.class, "getState");
m.annotate(Nonnull.class);
m.body()._return(fState);
// public Version getDeprecationRelease ()
m = jEnum.method(JMod.PUBLIC, Version.class, "getDeprecationRelease");
m.annotate(Nullable.class);
m.body()._return(fDeprecationRelease);
// public LocalDate getRemovalDate ()
m = jEnum.method(JMod.PUBLIC, LocalDate.class, "getRemovalDate");
m.annotate(Nullable.class);
m.body()._return(fRemovalDate);
// public boolean isIssuedByOpenPeppol ()
m = jEnum.method(JMod.PUBLIC, boolean.class, "isIssuedByOpenPeppol");
m.body()._return(fIssuedByOpenPeppol);
// public int getBISVersion ()
m = jEnum.method(JMod.PUBLIC, int.class, "getBISVersion");
m.annotate(CheckForSigned.class);
m.body()._return(fBISVersion);
// since 7.3 this method is nullable
// public String getDomainCommunity ()
m = jEnum.method(JMod.PUBLIC, String.class, "getDomainCommunity");
m.annotate(Nullable.class);
m.body()._return(fDomainCommunity);
// public ICommonsList<IProcessIdentifier> getAllProcessIDs()
m = jEnum.method(JMod.PUBLIC, CM.ref(ICommonsList.class).narrow(IProcessIdentifier.class), "getAllProcessIDs");
m.annotate(Nonnull.class);
m.annotate(Nonempty.class);
m.annotate(ReturnsMutableCopy.class);
m.body()._return(fProcessIDs.invoke("getClone"));
// @Nullable
// public static EPredefinedDocumentTypeIdentifier
// getFromDocumentTypeIdentifierOrNull(@Nullable final
// IDocumentTypeIdentifier aDocTypeID)
m = jEnum.method(JMod.PUBLIC | JMod.STATIC, jEnum, "getFromDocumentTypeIdentifierOrNull");
{
m.annotate(Nullable.class);
final JVar jValue = m.param(JMod.FINAL, IDocumentTypeIdentifier.class, "aDocTypeID");
jValue.annotate(Nullable.class);
final JBlock jIf = m.body()._if(jValue.neNull())._then();
final JForEach jForEach = jIf.forEach(jEnum, "e", jEnum.staticInvoke("values"));
jForEach.body()._if(jForEach.var().invoke("hasScheme").arg(jValue.invoke("getScheme")).cand(jForEach.var().invoke("hasValue").arg(jValue.invoke("getValue"))))._then()._return(jForEach.var());
m.body()._return(JExpr._null());
}
} catch (final JCodeModelException ex) {
LOGGER.error("Failed to create source", ex);
}
}
use of com.helger.peppolid.IProcessIdentifier in project peppol-commons by phax.
the class BDXR2IdentifierFactoryTest method testProcessIDCaseSensitive.
@Test
public void testProcessIDCaseSensitive() {
final BDXR2IdentifierFactory aIF = BDXR2IdentifierFactory.INSTANCE;
// Different scheme - handle case sensitive
final String sScheme = "cs-docid-qns";
final IProcessIdentifier aID1 = aIF.createProcessIdentifier(sScheme, "abc");
assertEquals(sScheme, aID1.getScheme());
assertEquals("abc", aID1.getValue());
// Value is NOT lower cased internally
final IProcessIdentifier aID2 = aIF.createProcessIdentifier(sScheme, "ABC");
assertEquals(sScheme, aID2.getScheme());
assertEquals("ABC", aID2.getValue());
assertFalse(aID1.hasSameContent(aID2));
}
use of com.helger.peppolid.IProcessIdentifier in project peppol-commons by phax.
the class SimpleIdentifierFactoryTest method testProcessIDCaseSensitive.
@Test
public void testProcessIDCaseSensitive() {
final SimpleIdentifierFactory aIF = SimpleIdentifierFactory.INSTANCE;
// Different scheme - handle case sensitive
final String sScheme = "cs-docid-qns";
final IProcessIdentifier aID1 = aIF.createProcessIdentifier(sScheme, "abc");
assertEquals(sScheme, aID1.getScheme());
assertEquals("abc", aID1.getValue());
// Value is NOT lower case internally
final IProcessIdentifier aID2 = aIF.createProcessIdentifier(sScheme, "ABC");
assertEquals(sScheme, aID2.getScheme());
assertEquals("ABC", aID2.getValue());
assertFalse(aID1.hasSameContent(aID2));
}
Aggregations