blob: 7369c3fec93a96a0624dde8df2fe930a621ee7b7 [file] [log] [blame]
<?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.
-->
<simple-methods xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/simple-methods-v2.xsd">
<simple-method method-name="createPartyContent" short-description="Create Party Content Entity">
<make-value value-field="partyContent" entity-name="PartyContent"/>
<set-pk-fields value-field="partyContent" map="parameters"/>
<set-nonpk-fields value-field="partyContent" map="parameters"/>
<if-empty field="partyContent.fromDate">
<now-timestamp field="nowTimestamp"/>
<set field="partyContent.fromDate" from-field="nowTimestamp"/>
</if-empty>
<create-value value-field="partyContent"/>
</simple-method>
<simple-method method-name="updatePartyContent" short-description="Update Party Content Entity">
<make-value value-field="lookupPkMap" entity-name="PartyContent"/>
<set-pk-fields value-field="lookupPkMap" map="parameters"/>
<find-by-primary-key map="lookupPkMap" value-field="partyContent"/>
<set-nonpk-fields value-field="partyContent" map="parameters"/>
<store-value value-field="partyContent"/>
</simple-method>
<simple-method method-name="removePartyContent" short-description="Update Party Content Entity">
<make-value value-field="lookupPkMap" entity-name="PartyContent"/>
<set-pk-fields value-field="lookupPkMap" map="parameters"/>
<find-by-primary-key map="lookupPkMap" value-field="partyContent"/>
<remove-value value-field="partyContent"/>
</simple-method>
</simple-methods>