use of com.axelor.apps.account.ebics.schema.h003.StaticHeaderOrderDetailsType in project axelor-open-suite by axelor.
the class EbicsXmlFactory method createStaticHeaderType.
/**
* Creates a new <code>StaticHeaderType</code> XML object
*
* @param hostId the host ID
* @param nonce the random nonce
* @param numSegments the segments number
* @param partnerId the partner ID
* @param product the <code>Product</code> element
* @param securityMedium the security medium
* @param userId the user Id
* @param timestamp the current time stamp
* @param orderDetails the <code>StaticHeaderOrderDetailsType</code> element
* @param bankPubKeyDigests the <code>BankPubKeyDigests</code> element
* @return the <code>StaticHeaderType</code> XML object
*/
public static StaticHeaderType createStaticHeaderType(String hostId, byte[] nonce, String partnerId, Product product, String securityMedium, String userId, Calendar timestamp, StaticHeaderOrderDetailsType orderDetails, BankPubKeyDigests bankPubKeyDigests) {
StaticHeaderType newStaticHeaderType = StaticHeaderType.Factory.newInstance();
newStaticHeaderType.setHostID(hostId);
newStaticHeaderType.setNonce(nonce);
newStaticHeaderType.setPartnerID(partnerId);
newStaticHeaderType.setProduct(product);
newStaticHeaderType.setSecurityMedium(securityMedium);
newStaticHeaderType.setUserID(userId);
newStaticHeaderType.setTimestamp(timestamp);
newStaticHeaderType.setOrderDetails(orderDetails);
newStaticHeaderType.setBankPubKeyDigests(bankPubKeyDigests);
return newStaticHeaderType;
}
use of com.axelor.apps.account.ebics.schema.h003.StaticHeaderOrderDetailsType in project axelor-open-suite by axelor.
the class EbicsXmlFactory method createStaticHeaderType.
/**
* Creates a new <code>StaticHeaderType</code> XML object
*
* @param hostId the host ID
* @param nonce the random nonce
* @param numSegments the segments number
* @param partnerId the partner ID
* @param product the <code>Product</code> element
* @param securityMedium the security medium
* @param userId the user Id
* @param timestamp the current time stamp
* @param orderDetails the <code>StaticHeaderOrderDetailsType</code> element
* @param bankPubKeyDigests the <code>BankPubKeyDigests</code> element
* @return the <code>StaticHeaderType</code> XML object
*/
public static StaticHeaderType createStaticHeaderType(String hostId, byte[] nonce, int numSegments, String partnerId, Product product, String securityMedium, String userId, Calendar timestamp, StaticHeaderOrderDetailsType orderDetails, BankPubKeyDigests bankPubKeyDigests) {
StaticHeaderType newStaticHeaderType = StaticHeaderType.Factory.newInstance();
newStaticHeaderType.setHostID(hostId);
newStaticHeaderType.setNonce(nonce);
newStaticHeaderType.setNumSegments(numSegments);
newStaticHeaderType.setPartnerID(partnerId);
newStaticHeaderType.setProduct(product);
newStaticHeaderType.setSecurityMedium(securityMedium);
newStaticHeaderType.setUserID(userId);
newStaticHeaderType.setTimestamp(timestamp);
newStaticHeaderType.setOrderDetails(orderDetails);
newStaticHeaderType.setBankPubKeyDigests(bankPubKeyDigests);
return newStaticHeaderType;
}
use of com.axelor.apps.account.ebics.schema.h003.StaticHeaderOrderDetailsType in project axelor-open-suite by axelor.
the class SPRRequestElement method buildInitialization.
@Override
public void buildInitialization() throws AxelorException {
EbicsRequest request;
Header header;
Body body;
MutableHeaderType mutable;
StaticHeaderType xstatic;
Product product;
BankPubKeyDigests bankPubKeyDigests;
Authentication authentication;
Encryption encryption;
DataTransferRequestType dataTransfer;
DataEncryptionInfo dataEncryptionInfo;
SignatureData signatureData;
EncryptionPubKeyDigest encryptionPubKeyDigest;
StaticHeaderOrderDetailsType orderDetails;
OrderType orderType;
StandardOrderParamsType standardOrderParamsType;
UserSignature userSignature;
EbicsUser ebicsUser = session.getUser();
EbicsPartner ebicsPartner = ebicsUser.getEbicsPartner();
userSignature = new UserSignature(ebicsUser, generateName("SIG"), "A005", " ".getBytes(), " ".getBytes());
// TODO Manage the ebics ts case, with an eletronic signature of the user
userSignature.build();
userSignature.validate();
mutable = EbicsXmlFactory.createMutableHeaderType("Initialisation", null);
product = EbicsXmlFactory.createProduct(session.getProduct().getLanguage(), session.getProduct().getName());
authentication = EbicsXmlFactory.createAuthentication("X002", "http://www.w3.org/2001/04/xmlenc#sha256", decodeHex(KeyUtil.getKeyDigest(session.getBankX002Key())));
encryption = EbicsXmlFactory.createEncryption("E002", "http://www.w3.org/2001/04/xmlenc#sha256", decodeHex(KeyUtil.getKeyDigest(session.getBankE002Key())));
bankPubKeyDigests = EbicsXmlFactory.createBankPubKeyDigests(authentication, encryption);
orderType = EbicsXmlFactory.createOrderType(type.getOrderType());
standardOrderParamsType = EbicsXmlFactory.createStandardOrderParamsType();
OrderAttribute orderAttribute = new OrderAttribute(type, ebicsPartner.getEbicsTypeSelect());
orderAttribute.build();
orderDetails = EbicsXmlFactory.createStaticHeaderOrderDetailsType(ebicsUser.getNextOrderId(), orderAttribute.getOrderAttributes(), orderType, standardOrderParamsType);
xstatic = EbicsXmlFactory.createStaticHeaderType(session.getBankID(), nonce, 0, ebicsPartner.getPartnerId(), product, ebicsUser.getSecurityMedium(), ebicsUser.getUserId(), Calendar.getInstance(), orderDetails, bankPubKeyDigests);
header = EbicsXmlFactory.createEbicsRequestHeader(true, mutable, xstatic);
encryptionPubKeyDigest = EbicsXmlFactory.createEncryptionPubKeyDigest("E002", "http://www.w3.org/2001/04/xmlenc#sha256", decodeHex(KeyUtil.getKeyDigest(session.getBankX002Key())));
signatureData = EbicsXmlFactory.createSignatureData(true, EbicsUtils.encrypt(EbicsUtils.zip(userSignature.prettyPrint()), keySpec));
dataEncryptionInfo = EbicsXmlFactory.createDataEncryptionInfo(true, encryptionPubKeyDigest, generateTransactionKey());
dataTransfer = EbicsXmlFactory.createDataTransferRequestType(dataEncryptionInfo, signatureData);
body = EbicsXmlFactory.createEbicsRequestBody(dataTransfer);
request = EbicsXmlFactory.createEbicsRequest(1, "H003", header, body);
document = EbicsXmlFactory.createEbicsRequestDocument(request);
}
Aggregations