Overview

Summary

ContactDonateImprint


Appendix E-1: PROTOCOL FEATURE (UI prompt)


ProtocolFeatureProtocolModuleShopify

Properties (3)

PropertyTypeEntityReferenceModule
(1) DescriptionSTRINGProtocolFeature
(2) NameSTRINGProtocolFeature
(3) ProtocolLONGProtocolFeatureProtocolProtocolModule


Module Interfaces (6)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /protocolfeature/{id}updateProtocolFeatureById(protocolfeature)ProtocolModulePUTProtocolFeature
(2) /protocolfeature/{id}deleteProtocolFeatureById(id)ProtocolModuleDELETEProtocolFeature
(3) /protocolfeature/protocol/{id}findAllProtocolFeatureOfProtocol(id)ProtocolModuleGETProtocol ProtocolFeature
(4) /protocolfeature/{id}findProtocolFeatureById(id)ProtocolModuleGETProtocolFeature
(5) /protocolfeaturefindAllProtocolFeature()ProtocolModuleGETProtocolFeature
(6) /protocolfeatureinsertProtocolFeature(protocolfeature)ProtocolModulePOSTProtocolFeature





Example:

final ProtocolFeature protocolfeature = (ProtocolFeature) invokeModule(PROTOCOL_MODULE + "/protocolfeature/" + id, ProtocolFeature.class);
if (protocolfeature != null) {
    final Protocol protocol1 = (Protocol) invokeModule(PROTOCOL_MODULE + "/protocol/" + protocolfeature.getProtocol().getId(), Protocol.class);
    if (protocol1 != null) {
    }
}
return protocolfeature;


Overview

Summary

ContactDonateImprint