|
Author: hansbak
Date: Tue Dec 1 09:57:12 2009 New Revision: 885706 URL: http://svn.apache.org/viewvc?rev=885706&view=rev Log: added 2 missing files Modified: ofbiz/branches/addbirt/applications/accounting/servicedef/services_sagepay.xml ofbiz/branches/addbirt/applications/party/entitydef/entitymodel_old.xml Modified: ofbiz/branches/addbirt/applications/accounting/servicedef/services_sagepay.xml URL: http://svn.apache.org/viewvc/ofbiz/branches/addbirt/applications/accounting/servicedef/services_sagepay.xml?rev=885706&r1=885705&r2=885706&view=diff ============================================================================== --- ofbiz/branches/addbirt/applications/accounting/servicedef/services_sagepay.xml (original) +++ ofbiz/branches/addbirt/applications/accounting/servicedef/services_sagepay.xml Tue Dec 1 09:57:12 2009 @@ -169,3 +169,174 @@ </service> </services> +<?xml version="1.0" encoding="UTF-8"?> +<!-- +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, +software distributed under the License is distributed on an +"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +KIND, either express or implied. See the License for the +specific language governing permissions and limitations +under the License. +--> + +<services xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/services.xsd"> + <description>Accounting Services</description> + <vendor>OFBiz</vendor> + <version>1.0</version> + + <service name="sagepayCCAuth" engine="java" + location="org.ofbiz.accounting.thirdparty.sagepay.SagePayPaymentServices" invoke="ccAuth"> + <description>SagePay Payment Authorization Service</description> + <implements service="ccAuthInterface"/> + </service> + + <service name="sagepayCCCapture" engine="java" + location="org.ofbiz.accounting.thirdparty.sagepay.SagePayPaymentServices" invoke="ccCapture"> + <description>SagePay Payment Capture Service</description> + <implements service="ccCaptureInterface"/> + </service> + + <service name="sagepayCCRelease" engine="java" + location="org.ofbiz.accounting.thirdparty.sagepay.SagePayPaymentServices" invoke="ccRelease"> + <description>SagePay Payment Release</description> + <implements service="paymentReleaseInterface"/> + </service> + + <service name="sagepayCCRefund" engine="java" + location="org.ofbiz.accounting.thirdparty.sagepay.SagePayPaymentServices" invoke="ccRefund"> + <description>SagePay Payment Refund Service</description> + <implements service="paymentRefundInterface"/> + </service> + + <service name="SagePayPaymentAuthentication" engine="java" location="org.ofbiz.accounting.thirdparty.sagepay.SagePayServices" + invoke="paymentAuthentication" auth="false"> + <description>For payment authentication</description> + <attribute name="paymentGatewayConfigId" type="String" mode="IN" optional="true"/> + <attribute name="transactionType" type="String" mode="OUT" optional="false"/> + <attribute name="vendorTxCode" type="String" mode="INOUT" optional="false"/> + <attribute name="cardHolder" type="String" mode="IN" optional="false"/> + <attribute name="cardNumber" type="String" mode="IN" optional="false"/> + <attribute name="expiryDate" type="String" mode="IN" optional="false"/> + <attribute name="cardType" type="String" mode="IN" optional="false"/> + <attribute name="amount" type="String" mode="INOUT" optional="false"/> + <attribute name="currency" type="String" mode="IN" optional="false"/> + + <!-- All the Billing* & Delivery* fields are not mandatory in version 2.22, + but mandatory in version 2.23, hence making them as optional --> + + <attribute name="billingSurname" type="String" mode="IN" optional="true"/> + <attribute name="billingFirstnames" type="String" mode="IN" optional="true"/> + <attribute name="billingAddress" type="String" mode="IN" optional="false"/> + <attribute name="billingAddress2" type="String" mode="IN" optional="true"/> + <attribute name="billingCity" type="String" mode="IN" optional="true"/> + <attribute name="billingPostCode" type="String" mode="IN" optional="false"/> + <attribute name="billingCountry" type="String" mode="IN" optional="true"/> + <attribute name="billingState" type="String" mode="IN" optional="true"/> + <attribute name="billingPhone" type="String" mode="IN" optional="true"/> + + <attribute name="isBillingSameAsDelivery" type="Boolean" mode="IN" optional="true"/> + + <attribute name="deliverySurname" type="String" mode="IN" optional="true"/> + <attribute name="deliveryFirstnames" type="String" mode="IN" optional="true"/> + <attribute name="deliveryAddress" type="String" mode="IN" optional="true"/> + <attribute name="deliveryAddress2" type="String" mode="IN" optional="true"/> + <attribute name="deliveryCity" type="String" mode="IN" optional="true"/> + <attribute name="deliveryPostCode" type="String" mode="IN" optional="true"/> + <attribute name="deliveryCountry" type="String" mode="IN" optional="true"/> + <attribute name="deliveryState" type="String" mode="IN" optional="true"/> + <attribute name="deliveryPhone" type="String" mode="IN" optional="true"/> + + <!-- start optional parameters (optional not to the service, but to the payment gateway --> + <attribute name="cv2" type="String" mode="IN" optional="true"/> + <attribute name="startDate" type="String" mode="IN" optional="true"/> + <attribute name="issueNumber" type="String" mode="IN" optional="true"/> + <!-- end optional parameters --> + + <attribute name="basket" type="String" mode="IN" optional="true"/> + <attribute name="description" type="String" mode="IN" optional="false"/> + <attribute name="clientIPAddress" type="String" mode="IN" optional="true"/> + + <attribute name="status" type="String" mode="OUT" optional="true"/> + <attribute name="statusDetail" type="String" mode="OUT" optional="true"/> + + <!-- start - this parameters will only be returned if the transaction is authorised --> + <attribute name="vpsTxId" type="String" mode="OUT" optional="true"/> + <attribute name="securityKey" type="String" mode="OUT" optional="true"/> + <attribute name="txAuthNo" type="String" mode="OUT" optional="true"/> + <attribute name="avsCv2" type="String" mode="OUT" optional="true"/> + <attribute name="addressResult" type="String" mode="OUT" optional="true"/> + <attribute name="postCodeResult" type="String" mode="OUT" optional="true"/> + <attribute name="cv2Result" type="String" mode="OUT" optional="true"/> + <attribute name="cavv" type="String" mode="OUT" optional="true"/> + <!-- end - this parameters will only be returned if the transaction is authorised --> + + </service> + + <service name="SagePayPaymentAuthorisation" engine="java" location="org.ofbiz.accounting.thirdparty.sagepay.SagePayServices" + invoke="paymentAuthorisation" auth="false"> + <description>For capturing the payment</description> + <attribute name="paymentGatewayConfigId" type="String" mode="IN" optional="true"/> + <attribute name="vendorTxCode" type="String" mode="IN" optional="false"/> + <attribute name="vpsTxId" type="String" mode="IN" optional="true"/> + <attribute name="securityKey" type="String" mode="IN" optional="true"/> + <attribute name="txAuthNo" type="String" mode="IN" optional="true"/> + <attribute name="amount" type="String" mode="IN" optional="false"/> + <attribute name="status" type="String" mode="OUT" optional="true"/> + <attribute name="statusDetail" type="String" mode="OUT" optional="true"/> + </service> + + <service name="SagePayPaymentRelease" engine="java" location="org.ofbiz.accounting.thirdparty.sagepay.SagePayServices" + invoke="paymentRelease" auth="false"> + <description>For releasing (cancel) the payment</description> + <attribute name="paymentGatewayConfigId" type="String" mode="IN" optional="true"/> + <attribute name="vendorTxCode" type="String" mode="IN" optional="false"/> + <attribute name="vpsTxId" type="String" mode="IN" optional="false"/> + <attribute name="securityKey" type="String" mode="IN" optional="false"/> + <attribute name="txAuthNo" type="String" mode="IN" optional="false"/> + <attribute name="releaseAmount" type="String" mode="IN" optional="false"/> + <attribute name="status" type="String" mode="OUT" optional="true"/> + <attribute name="statusDetail" type="String" mode="OUT" optional="true"/> + </service> + + <service name="SagePayPaymentVoid" engine="java" location="org.ofbiz.accounting.thirdparty.sagepay.SagePayServices" + invoke="paymentVoid" auth="false"> + <description>For voiding the payment</description> + <attribute name="paymentGatewayConfigId" type="String" mode="IN" optional="true"/> + <attribute name="vendorTxCode" type="String" mode="IN" optional="false"/> + <attribute name="vpsTxId" type="String" mode="IN" optional="false"/> + <attribute name="securityKey" type="String" mode="IN" optional="false"/> + <attribute name="txAuthNo" type="String" mode="IN" optional="false"/> + <attribute name="status" type="String" mode="OUT" optional="true"/> + <attribute name="statusDetail" type="String" mode="OUT" optional="true"/> + </service> + + <service name="SagePayPaymentRefund" engine="java" location="org.ofbiz.accounting.thirdparty.sagepay.SagePayServices" + invoke="paymentRefund" auth="false"> + <description>For refunding the payment</description> + <attribute name="paymentGatewayConfigId" type="String" mode="IN" optional="true"/> + <attribute name="vendorTxCode" type="String" mode="IN" optional="false"/> + <attribute name="amount" type="String" mode="IN" optional="false"/> + <attribute name="currency" type="String" mode="IN" optional="false"/> + <attribute name="description" type="String" mode="IN" optional="false"/> + <attribute name="relatedVPSTxId" type="String" mode="IN" optional="false"/> + <attribute name="relatedVendorTxCode" type="String" mode="IN" optional="false"/> + <attribute name="relatedSecurityKey" type="String" mode="IN" optional="false"/> + <attribute name="relatedTxAuthNo" type="String" mode="IN" optional="false"/> + <attribute name="status" type="String" mode="OUT" optional="true"/> + <attribute name="statusDetail" type="String" mode="OUT" optional="true"/> + <attribute name="vpsTxId" type="String" mode="OUT" optional="true"/> + <attribute name="txAuthNo" type="String" mode="OUT" optional="true"/> + </service> + +</services> Modified: ofbiz/branches/addbirt/applications/party/entitydef/entitymodel_old.xml URL: http://svn.apache.org/viewvc/ofbiz/branches/addbirt/applications/party/entitydef/entitymodel_old.xml?rev=885706&r1=885705&r2=885706&view=diff ============================================================================== --- ofbiz/branches/addbirt/applications/party/entitydef/entitymodel_old.xml (original) +++ ofbiz/branches/addbirt/applications/party/entitydef/entitymodel_old.xml Tue Dec 1 09:57:12 2009 @@ -54,4 +54,61 @@ <key-map field-name="workEffortId"/> </relation> </entity> +</entitymodel> +<?xml version="1.0" encoding="UTF-8"?> +<!-- +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, +software distributed under the License is distributed on an +"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +KIND, either express or implied. See the License for the +specific language governing permissions and limitations +under the License. +--> + +<entitymodel xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/entitymodel.xsd"> + <!-- ========================================================= --> + <!-- ======================== Defaults ======================= --> + <!-- ========================================================= --> + <title>Entity of an Open For Business Project Component</title> + <description>None</description> + <copyright>Copyright 2001-2009 The Apache Software Foundation</copyright> + <author>None</author> + <version>1.0</version> + <!-- ========================================================= --> + <!-- ======================== Data Model ===================== --> + <!-- The modules in this file are as follows: --> + <!-- org.ofbiz.party.agreement --> + <!-- ========================================================= --> + + <entity entity-name="OldAgreementWorkEffortAppl" table-name="AGREEMENT_WORKEFFORT_APPL" + package-name="org.ofbiz.party.agreement" title="Agreement WorkEffort Application Entity"> + <description>NOTE: this entity is deprecated by AgreementWorkEffortApplic</description> + <field name="agreementId" type="id-ne"></field> + <field name="agreementItemSeqId" type="id-ne"></field> + <field name="workEffortId" type="id-ne"></field> + <prim-key field="agreementId"/> + <prim-key field="agreementItemSeqId"/> + <prim-key field="workEffortId"/> + <relation type="one-nofk" rel-entity-name="Agreement"> + <key-map field-name="agreementId"/> + </relation> + <relation type="one" fk-name="AGRMNT_WEA_AITM" rel-entity-name="AgreementItem"> + <key-map field-name="agreementId"/> + <key-map field-name="agreementItemSeqId"/> + </relation> + <relation type="one" fk-name="AGRMNT_WEA_WEFF" rel-entity-name="WorkEffort"> + <key-map field-name="workEffortId"/> + </relation> + </entity> </entitymodel> \ No newline at end of file |
| Free forum by Nabble | Edit this page |
