My Project
ActivityTemplate.h
1 /*-----------------------------------------------------------------------
2 Copyright F2I-CONSULTING, (2014-2016)
3 
4 philippe.verney@f2i-consulting.com
5 
6 This software is a computer program whose purpose is to access to data formatted using Energistics standards.
7 
8 This software is governed by the CeCILL-B license under French law and
9 abiding by the rules of distribution of free software. You can use,
10 modify and/ or redistribute the software under the terms of the CeCILL-B
11 license as circulated by CEA, CNRS and INRIA at the following URL
12 "http://www.cecill.info".
13 
14 As a counterpart to the access to the source code and rights to copy,
15 modify and redistribute granted by the license, users are provided only
16 with a limited warranty and the software's author, the holder of the
17 economic rights, and the successive licensors have only limited
18 liability.
19 
20 In this respect, the user's attention is drawn to the risks associated
21 with loading, using, modifying and/or developing or reproducing the
22 software by the user in light of its specific status of free software,
23 that may mean that it is complicated to manipulate, and that also
24 therefore means that it is reserved for developers and experienced
25 professionals having in-depth computer knowledge. Users are therefore
26 encouraged to load and test the software's suitability as regards their
27 requirements in conditions enabling the security of their systems and/or
28 data to be ensured and, more generally, to use and operate it in the
29 same conditions as regards security.
30 
31 The fact that you are presently reading this means that you have had
32 knowledge of the CeCILL-B license and that you accept its terms.
33 -----------------------------------------------------------------------*/
34 #pragma once
35 
36 #include "resqml2/ActivityTemplate.h"
37 
38 namespace resqml2_0_1
39 {
40  class DLL_IMPORT_OR_EXPORT ActivityTemplate : public resqml2::ActivityTemplate
41  {
42  public:
43 
50  ActivityTemplate(soap* soapContext, const std::string & guid, const std::string & title);
51 
52  ActivityTemplate(gsoap_resqml2_0_1::_resqml2__ActivityTemplate* fromGsoap) : resqml2::ActivityTemplate(fromGsoap) {}
53  virtual ~ActivityTemplate() {}
54 
59  void pushBackParameter(const std::string title,
60  const bool & isInput, const bool isOutput,
61  const unsigned int & minOccurs, const int & maxOccurs);
62 
67  void pushBackParameter(const std::string title,
68  const gsoap_resqml2_0_1::resqml2__ParameterKind & kind,
69  const bool & isInput, const bool isOutput,
70  const unsigned int & minOccurs, const int & maxOccurs);
71 
77  void pushBackParameter(const std::string title,
78  const bool & isInput, const bool isOutput,
79  const unsigned int & minOccurs, const int & maxOccurs,
80  const std::string & resqmlObjectContentType);
81 
86  bool isAnExistingParameter(const std::string & paramTitle) const;
87 
88  const unsigned int getParameterCount() const;
89  const std::string & getParameterTitle(const unsigned int & index) const;
90  const std::vector<gsoap_resqml2_0_1::resqml2__ParameterKind> & getParameterAllowedKinds(const unsigned int & index) const;
91  const std::vector<gsoap_resqml2_0_1::resqml2__ParameterKind> & getParameterAllowedKinds(const std::string & paramTitle) const;
92  const bool & getParameterIsInput(const unsigned int & index) const;
93  const bool & getParameterIsInput(const std::string & paramTitle) const;
94  const bool & getParameterIsOutput(const unsigned int & index) const;
95  const bool & getParameterIsOutput(const std::string & paramTitle) const;
96  const LONG64 getParameterMinOccurences(const unsigned int & index) const;
97  const LONG64 getParameterMinOccurences(const std::string & paramTitle) const;
98  const LONG64 getParameterMaxOccurences(const unsigned int & index) const;
99  const LONG64 getParameterMaxOccurences(const std::string & paramTitle) const;
100 
101  const std::vector<Activity*> & getActivityInstanceSet() const { return activityInstanceSet; }
102 
103  //******************************************************************
104  //******************** MANDATORY FOR GsoapWrapper ******************
105  //******************************************************************
106 
107  std::string getResqmlVersion() const;
108 
109  static const char* XML_TAG;
110  std::string getXmlTag() const {return XML_TAG;}
111 
112 
113  private:
114  std::vector<epc::Relationship> getAllEpcRelationships() const;
115  void importRelationshipSetFromEpc(common::EpcDocument * epcDoc) {}
116 
117  gsoap_resqml2_0_1::resqml2__ParameterTemplate* getParameterFromTitle(const std::string & paramTitle) const;
118 
119  std::vector<Activity*> activityInstanceSet;
120  };
121 }
Definition: ActivityTemplate.h:40
Definition: ActivityTemplate.h:40
Definition: EpcDocument.h:79
Definition: EpcDocument.h:155
std::string getXmlTag() const
Definition: ActivityTemplate.h:110