Commit 1035ba0c authored by Spiros Koulouzis's avatar Spiros Koulouzis

implemented sysbench storage

parent a812ba2c
......@@ -72,7 +72,7 @@
<h1 class="page-header">Files and Libraries</h1>
<h3 id="artifact_gwt_json_overlay">GWT JSON Overlay</h3>
<p class="lead">Created April 24, 2017</p>
<p class="lead">Created April 25, 2017</p>
<p> <p>
The <a href="http://code.google.com/webtoolkit/">Google Web Toolkit</a> JSON Overlay library provides the JSON Overlays that
can be used to access the Web service API for this application.
......@@ -97,7 +97,7 @@
</tbody>
</table>
<h3 id="artifact_java_json_client_library">Java JSON Client Library</h3>
<p class="lead">Created April 24, 2017</p>
<p class="lead">Created April 25, 2017</p>
<p><p>
The Java client-side library is used to provide the set of Java objects that can be serialized
to/from JSON using <a href="http://jackson.codehaus.org/">Jackson</a>. This is useful for accessing the
......@@ -116,18 +116,18 @@
<tbody data-link="row" class="rowlink">
<tr class="clickable-row" data-href="drip-api-json-client.jar">
<td><span class="downloadfile-name">drip-api-json-client.jar</span></td>
<td><span class="downloadfile-size">20.67K</span></td>
<td><span class="downloadfile-size">20.66K</span></td>
<td><span class="downloadfile-description">The binaries for the Java JSON client library.</span></td>
</tr>
<tr class="clickable-row" data-href="drip-api-json-client-json-sources.jar">
<td><span class="downloadfile-name">drip-api-json-client-json-sources.jar</span></td>
<td><span class="downloadfile-size">16.68K</span></td>
<td><span class="downloadfile-size">16.67K</span></td>
<td><span class="downloadfile-description">The sources for the Java JSON client library.</span></td>
</tr>
</tbody>
</table>
<h3 id="artifact_java_xml_client_library">Java XML Client Library</h3>
<p class="lead">Created April 24, 2017</p>
<p class="lead">Created April 25, 2017</p>
<p><p>
The Java client-side library is used to access the Web service API for this application using Java.
</p>
......@@ -149,13 +149,13 @@
</tr>
<tr class="clickable-row" data-href="drip-api-xml-client-xml-sources.jar">
<td><span class="downloadfile-name">drip-api-xml-client-xml-sources.jar</span></td>
<td><span class="downloadfile-size">22.93K</span></td>
<td><span class="downloadfile-size">22.92K</span></td>
<td><span class="downloadfile-description">The sources for the Java XML client library.</span></td>
</tr>
</tbody>
</table>
<h3 id="artifact_js_client_library">JavaScript Client Library</h3>
<p class="lead">Created April 24, 2017</p>
<p class="lead">Created April 25, 2017</p>
<p><p>
The JavaScript client-side library defines classes that can be (de)serialized to/from JSON.
This is useful for accessing the resources that are published by this application, but only
......@@ -190,7 +190,7 @@
</tbody>
</table>
<h3 id="artifact_php_json_client_library">PHP JSON Client Library</h3>
<p class="lead">Created April 24, 2017</p>
<p class="lead">Created April 25, 2017</p>
<p><p>
The PHP JSON client-side library defines the PHP classes that can be (de)serialized to/from JSON.
This is useful for accessing the resources that are published by this application, but only
......@@ -219,7 +219,7 @@
</tbody>
</table>
<h3 id="artifact_php_xml_client_library">PHP XML Client Library</h3>
<p class="lead">Created April 24, 2017</p>
<p class="lead">Created April 25, 2017</p>
<p><p>
The PHP client-side library defines the PHP classes that can be (de)serialized to/from XML.
This is useful for accessing the resources that are published by this application, but only
......@@ -251,7 +251,7 @@
</tbody>
</table>
<h3 id="artifact_ruby_json_client_library">Ruby JSON Client Library</h3>
<p class="lead">Created April 24, 2017</p>
<p class="lead">Created April 25, 2017</p>
<p><p>
The Ruby JSON client-side library defines the Ruby classes that can be (de)serialized to/from JSON.
This is useful for accessing the REST endpoints that are published by this application, but only
......@@ -276,7 +276,7 @@
<tbody data-link="row" class="rowlink">
<tr class="clickable-row" data-href="drip-api.rb">
<td><span class="downloadfile-name">drip-api.rb</span></td>
<td><span class="downloadfile-size">107.46K</span></td>
<td><span class="downloadfile-size">107.43K</span></td>
<td><span class="downloadfile-description">&nbsp;</span></td>
</tr>
</tbody>
......
......@@ -824,15 +824,15 @@ module External
attr_accessor :owner
# the id
attr_accessor :id
# the creationDate
attr_accessor :creationDate
# the timestamp
attr_accessor :timestamp
# the json hash for this OwnedObject
def to_jaxb_json_hash
_h = {}
_h['owner'] = owner.to_jaxb_json_hash unless owner.nil?
_h['id'] = id.to_jaxb_json_hash unless id.nil?
_h['creationDate'] = creationDate.to_jaxb_json_hash unless creationDate.nil?
_h['timestamp'] = timestamp.to_jaxb_json_hash unless timestamp.nil?
return _h
end
......@@ -881,23 +881,23 @@ module External
@id = _oa
end
end
if !_o['creationDate'].nil?
_oa = _o['creationDate']
if !_o['timestamp'].nil?
_oa = _o['timestamp']
if(_oa.is_a? Hash)
@creationDate = EnunciateHelpers::LAMB_CLASS_AWARE.call(_oa) if _oa['@class']
@creationDate = Bignum.from_json(_oa) unless _oa['@class']
@timestamp = EnunciateHelpers::LAMB_CLASS_AWARE.call(_oa) if _oa['@class']
@timestamp = Bignum.from_json(_oa) unless _oa['@class']
elsif (_oa.is_a? Array)
#an array(of hashes hopefully) or scalar
@creationDate = Array.new
@timestamp = Array.new
_oa.each { | _item |
if ((_item.nil? || _item['@class'].nil?)rescue true)
@creationDate.push Bignum.from_json(_item)
@timestamp.push Bignum.from_json(_item)
else
@creationDate.push EnunciateHelpers::LAMB_CLASS_AWARE.call(_item)
@timestamp.push EnunciateHelpers::LAMB_CLASS_AWARE.call(_item)
end
}
else
@creationDate = _oa
@timestamp = _oa
end
end
end
......
......@@ -145,7 +145,7 @@ the DAO saves the object based on the principal how made the call</span></td>
object is saved.</span></td>
</tr>
<tr>
<td><span class="property-name">creationDate</span></td>
<td><span class="property-name">timestamp</span></td>
<td><span class="datatype-reference">number
</span></td>
<td><span class="property-description"></span></td>
......@@ -172,7 +172,7 @@ object is saved.</span></td>
&quot;provisionID&quot; : &quot;...&quot;,
&quot;owner&quot; : &quot;user1&quot;,
&quot;id&quot; : &quot;58e3946e0fb4f562d84ba1ad&quot;,
&quot;creationDate&quot; : 12345
&quot;timestamp&quot; : 12345
}</pre>
<footer class="footer">
......
......@@ -155,7 +155,7 @@ the DAO saves the object based on the principal how made the call</span></td>
object is saved.</span></td>
</tr>
<tr>
<td><span class="property-name">creationDate</span></td>
<td><span class="property-name">timestamp</span></td>
<td><span class="datatype-reference">number
</span></td>
<td><span class="property-description"></span></td>
......@@ -174,7 +174,7 @@ object is saved.</span></td>
&quot;cloudDeploymentDomain&quot; : &quot;...&quot;,
&quot;owner&quot; : &quot;user1&quot;,
&quot;id&quot; : &quot;58e3946e0fb4f562d84ba1ad&quot;,
&quot;creationDate&quot; : 12345
&quot;timestamp&quot; : 12345
}</pre>
<footer class="footer">
......
......@@ -136,7 +136,7 @@ the DAO saves the object based on the principal how made the call</span></td>
object is saved.</span></td>
</tr>
<tr>
<td><span class="property-name">creationDate</span></td>
<td><span class="property-name">timestamp</span></td>
<td><span class="datatype-reference">number
</span></td>
<td><span class="property-description"></span></td>
......@@ -153,7 +153,7 @@ object is saved.</span></td>
&quot;keyPairIDs&quot; : [ &quot;AKIKIQY9K1ZUQ6M7YBSQ, LKJ2KIQY9K1F236M7YASD&quot;, &quot;...&quot; ],
&quot;owner&quot; : &quot;user1&quot;,
&quot;id&quot; : &quot;58e3946e0fb4f562d84ba1ad&quot;,
&quot;creationDate&quot; : 12345
&quot;timestamp&quot; : 12345
}</pre>
<footer class="footer">
......
......@@ -131,7 +131,7 @@ the DAO saves the object based on the principal how made the call</span></td>
object is saved.</span></td>
</tr>
<tr>
<td><span class="property-name">creationDate</span></td>
<td><span class="property-name">timestamp</span></td>
<td><span class="datatype-reference">number
</span></td>
<td><span class="property-description"></span></td>
......@@ -147,7 +147,7 @@ object is saved.</span></td>
&quot;configurationID&quot; : &quot;58e3946e0fb4f562d84ba1ad&quot;,
&quot;owner&quot; : &quot;user1&quot;,
&quot;id&quot; : &quot;58e3946e0fb4f562d84ba1ad&quot;,
&quot;creationDate&quot; : 12345
&quot;timestamp&quot; : 12345
}</pre>
<footer class="footer">
......
......@@ -144,7 +144,7 @@ the DAO saves the object based on the principal how made the call</span></td>
object is saved.</span></td>
</tr>
<tr>
<td><span class="property-name">creationDate</span></td>
<td><span class="property-name">timestamp</span></td>
<td><span class="datatype-reference">number
</span></td>
<td><span class="property-description"></span></td>
......@@ -177,14 +177,14 @@ object is saved.</span></td>
},
&quot;owner&quot; : &quot;user1&quot;,
&quot;id&quot; : &quot;58e3946e0fb4f562d84ba1ad&quot;,
&quot;creationDate&quot; : 12345
&quot;timestamp&quot; : 12345
},
&quot;provisionID&quot; : &quot;58e3946e0fb4f562d84ba1ad&quot;,
&quot;managerType&quot; : &quot;ansible&quot;,
&quot;configurationID&quot; : &quot;58e3946e0fb4f562d84ba1ad&quot;,
&quot;owner&quot; : &quot;user1&quot;,
&quot;id&quot; : &quot;58e3946e0fb4f562d84ba1ad&quot;,
&quot;creationDate&quot; : 12345
&quot;timestamp&quot; : 12345
}</pre>
<footer class="footer">
......
......@@ -118,7 +118,7 @@ the DAO saves the object based on the principal how made the call</span></td>
object is saved.</span></td>
</tr>
<tr>
<td><span class="property-name">creationDate</span></td>
<td><span class="property-name">timestamp</span></td>
<td><span class="datatype-reference">number
</span></td>
<td><span class="property-description"></span></td>
......@@ -149,7 +149,7 @@ object is saved.</span></td>
},
&quot;owner&quot; : &quot;user1&quot;,
&quot;id&quot; : &quot;58e3946e0fb4f562d84ba1ad&quot;,
&quot;creationDate&quot; : 12345
&quot;timestamp&quot; : 12345
}</pre>
<footer class="footer">
......
......@@ -111,7 +111,7 @@ the DAO saves the object based on the principal how made the call</span></td>
object is saved.</span></td>
</tr>
<tr>
<td><span class="property-name">creationDate</span></td>
<td><span class="property-name">timestamp</span></td>
<td><span class="datatype-reference">number
</span></td>
<td><span class="property-description"></span></td>
......@@ -128,7 +128,7 @@ object is saved.</span></td>
},
&quot;owner&quot; : &quot;user1&quot;,
&quot;id&quot; : &quot;58e3946e0fb4f562d84ba1ad&quot;,
&quot;creationDate&quot; : 12345
&quot;timestamp&quot; : 12345
}</pre>
<footer class="footer">
......
......@@ -69,7 +69,7 @@ class</p>
<dl class="dl-horizontal">
<dt>Subtypes</dt>
<dd><a href="json_DeployRequest.html">DeployRequest</a>, <a href="json_ProvisionRequest.html">ProvisionRequest</a>, <a href="json_KeyPair.html">KeyPair</a>, <a href="json_AnsibleOutput.html">AnsibleOutput</a>, <a href="json_KeyValueHolder.html">KeyValueHolder</a>, <a href="json_PlanResponse.html">PlanResponse</a>, <a href="json_SysbenchCPUBenchmark.html">SysbenchCPUBenchmark</a>, <a href="json_PlaybookRepresentation.html">PlaybookRepresentation</a>, <a href="json_ProvisionResponse.html">ProvisionResponse</a>, <a href="json_Script.html">Script</a>, <a href="json_DeployResponse.html">DeployResponse</a>, <a href="json_BenchmarkResult.html">BenchmarkResult</a>, <a href="json_ToscaRepresentation.html">ToscaRepresentation</a>, <a href="json_CloudCredentials.html">CloudCredentials</a></dd>
<dd><a href="json_DeployRequest.html">DeployRequest</a>, <a href="json_KeyPair.html">KeyPair</a>, <a href="json_ProvisionRequest.html">ProvisionRequest</a>, <a href="json_AnsibleOutput.html">AnsibleOutput</a>, <a href="json_PlanResponse.html">PlanResponse</a>, <a href="json_KeyValueHolder.html">KeyValueHolder</a>, <a href="json_SysbenchCPUBenchmark.html">SysbenchCPUBenchmark</a>, <a href="json_PlaybookRepresentation.html">PlaybookRepresentation</a>, <a href="json_ProvisionResponse.html">ProvisionResponse</a>, <a href="json_Script.html">Script</a>, <a href="json_DeployResponse.html">DeployResponse</a>, <a href="json_BenchmarkResult.html">BenchmarkResult</a>, <a href="json_ToscaRepresentation.html">ToscaRepresentation</a>, <a href="json_CloudCredentials.html">CloudCredentials</a></dd>
</dl>
<table class="table datatype-properties">
......@@ -103,7 +103,7 @@ object is saved.</span>
</td>
</tr>
<tr>
<td> <span class="property-name">creationDate</span>
<td> <span class="property-name">timestamp</span>
</td>
<td> <span class="datatype-reference">number
</span>
......@@ -119,7 +119,7 @@ object is saved.</span>
<pre class="prettyprint language-js example">{
&quot;owner&quot; : &quot;user1&quot;,
&quot;id&quot; : &quot;58e3946e0fb4f562d84ba1ad&quot;,
&quot;creationDate&quot; : 12345
&quot;timestamp&quot; : 12345
}</pre>
<footer class="footer">
......
......@@ -150,7 +150,7 @@ the DAO saves the object based on the principal how made the call</span></td>
object is saved.</span></td>
</tr>
<tr>
<td><span class="property-name">creationDate</span></td>
<td><span class="property-name">timestamp</span></td>
<td><span class="datatype-reference">number
</span></td>
<td><span class="property-description"></span></td>
......@@ -171,7 +171,7 @@ object is saved.</span></td>
},
&quot;owner&quot; : &quot;user1&quot;,
&quot;id&quot; : &quot;58e3946e0fb4f562d84ba1ad&quot;,
&quot;creationDate&quot; : 12345
&quot;timestamp&quot; : 12345
}</pre>
<footer class="footer">
......
......@@ -110,7 +110,7 @@ the DAO saves the object based on the principal how made the call</span></td>
object is saved.</span></td>
</tr>
<tr>
<td><span class="property-name">creationDate</span></td>
<td><span class="property-name">timestamp</span></td>
<td><span class="datatype-reference">number
</span></td>
<td><span class="property-description"></span></td>
......@@ -127,7 +127,7 @@ object is saved.</span></td>
},
&quot;owner&quot; : &quot;user1&quot;,
&quot;id&quot; : &quot;58e3946e0fb4f562d84ba1ad&quot;,
&quot;creationDate&quot; : 12345
&quot;timestamp&quot; : 12345
}</pre>
<footer class="footer">
......
......@@ -140,7 +140,7 @@ the DAO saves the object based on the principal how made the call</span></td>
object is saved.</span></td>
</tr>
<tr>
<td><span class="property-name">creationDate</span></td>
<td><span class="property-name">timestamp</span></td>
<td><span class="datatype-reference">number
</span></td>
<td><span class="property-description"></span></td>
......@@ -160,7 +160,7 @@ object is saved.</span></td>
},
&quot;owner&quot; : &quot;user1&quot;,
&quot;id&quot; : &quot;58e3946e0fb4f562d84ba1ad&quot;,
&quot;creationDate&quot; : 12345
&quot;timestamp&quot; : 12345
}</pre>
<footer class="footer">
......
......@@ -142,7 +142,7 @@ the DAO saves the object based on the principal how made the call</span></td>
object is saved.</span></td>
</tr>
<tr>
<td><span class="property-name">creationDate</span></td>
<td><span class="property-name">timestamp</span></td>
<td><span class="datatype-reference">number
</span></td>
<td><span class="property-description"></span></td>
......@@ -173,7 +173,7 @@ object is saved.</span></td>
},
&quot;owner&quot; : &quot;user1&quot;,
&quot;id&quot; : &quot;58e3946e0fb4f562d84ba1ad&quot;,
&quot;creationDate&quot; : 12345
&quot;timestamp&quot; : 12345
}</pre>
<footer class="footer">
......
......@@ -117,7 +117,7 @@ the DAO saves the object based on the principal how made the call</span></td>
object is saved.</span></td>
</tr>
<tr>
<td><span class="property-name">creationDate</span></td>
<td><span class="property-name">timestamp</span></td>
<td><span class="datatype-reference">number
</span></td>
<td><span class="property-description"></span></td>
......@@ -132,7 +132,7 @@ object is saved.</span></td>
&quot;contents&quot; : &quot; #!/bin/bash\necho \&quot;Reading system-wide config....\&quot; &gt;&amp;2\\n. /etc/cool.cfg\nif [ -r ~/.coolrc ]; then\n echo \&quot;Reading user config....\&quot; &gt;&amp;2\\n . ~/.coolrc\\nfi&quot;,
&quot;owner&quot; : &quot;user1&quot;,
&quot;id&quot; : &quot;58e3946e0fb4f562d84ba1ad&quot;,
&quot;creationDate&quot; : 12345
&quot;timestamp&quot; : 12345
}</pre>
<footer class="footer">
......
......@@ -257,7 +257,7 @@ the DAO saves the object based on the principal how made the call</span></td>
object is saved.</span></td>
</tr>
<tr>
<td><span class="property-name">creationDate</span></td>
<td><span class="property-name">timestamp</span></td>
<td><span class="datatype-reference">number
</span></td>
<td><span class="property-description"></span></td>
......@@ -289,7 +289,7 @@ object is saved.</span></td>
&quot;cloudDeploymentDomain&quot; : &quot;...&quot;,
&quot;owner&quot; : &quot;user1&quot;,
&quot;id&quot; : &quot;58e3946e0fb4f562d84ba1ad&quot;,
&quot;creationDate&quot; : 12345
&quot;timestamp&quot; : 12345
}</pre>
<footer class="footer">
......
......@@ -119,7 +119,7 @@ the DAO saves the object based on the principal how made the call</span></td>
object is saved.</span></td>
</tr>
<tr>
<td><span class="property-name">creationDate</span></td>
<td><span class="property-name">timestamp</span></td>
<td><span class="datatype-reference">number
</span></td>
<td><span class="property-description"></span></td>
......@@ -137,7 +137,7 @@ object is saved.</span></td>
},
&quot;owner&quot; : &quot;user1&quot;,
&quot;id&quot; : &quot;58e3946e0fb4f562d84ba1ad&quot;,
&quot;creationDate&quot; : 12345
&quot;timestamp&quot; : 12345
}</pre>
<footer class="footer">
......
......@@ -493,7 +493,7 @@ the DAO saves the object based on the principal how made the call]]>
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="creationDate" type="xs:long" minOccurs="0">
<xs:element name="timestamp" type="xs:long" minOccurs="0">
</xs:element>
</xs:sequence>
</xs:complexType>
......
......@@ -174,7 +174,7 @@ Content-Type: application/json
&quot;provisionID&quot; : &quot;...&quot;,
&quot;owner&quot; : &quot;user1&quot;,
&quot;id&quot; : &quot;58e3946e0fb4f562d84ba1ad&quot;,
&quot;creationDate&quot; : 12345
&quot;timestamp&quot; : 12345
} ]
</code>
</pre>
......@@ -598,7 +598,7 @@ Content-Type: application/json
&quot;provisionID&quot; : &quot;...&quot;,
&quot;owner&quot; : &quot;user1&quot;,
&quot;id&quot; : &quot;58e3946e0fb4f562d84ba1ad&quot;,
&quot;creationDate&quot; : 12345
&quot;timestamp&quot; : 12345
}
</code>
</pre>
......
......@@ -147,7 +147,7 @@ Content-Type: application/json
&quot;cloudDeploymentDomain&quot; : &quot;...&quot;,
&quot;owner&quot; : &quot;user1&quot;,
&quot;id&quot; : &quot;58e3946e0fb4f562d84ba1ad&quot;,
&quot;creationDate&quot; : 12345
&quot;timestamp&quot; : 12345
} ]
</code>
</pre>
......@@ -489,7 +489,7 @@ Content-Type: application/json
&quot;cloudDeploymentDomain&quot; : &quot;...&quot;,
&quot;owner&quot; : &quot;user1&quot;,
&quot;id&quot; : &quot;58e3946e0fb4f562d84ba1ad&quot;,
&quot;creationDate&quot; : 12345
&quot;timestamp&quot; : 12345
}
</code>
</pre>
......
......@@ -169,7 +169,7 @@ Accept: application/json
&quot;keyPairIDs&quot; : [ &quot;AKIKIQY9K1ZUQ6M7YBSQ, LKJ2KIQY9K1F236M7YASD&quot;, &quot;...&quot; ],
&quot;owner&quot; : &quot;user1&quot;,
&quot;id&quot; : &quot;58e3946e0fb4f562d84ba1ad&quot;,
&quot;creationDate&quot; : 12345
&quot;timestamp&quot; : 12345
}
</code>
</pre>
......@@ -412,7 +412,7 @@ Content-Type: application/json
&quot;keyPairIDs&quot; : [ &quot;AKIKIQY9K1ZUQ6M7YBSQ, LKJ2KIQY9K1F236M7YASD&quot;, &quot;...&quot; ],
&quot;owner&quot; : &quot;user1&quot;,
&quot;id&quot; : &quot;58e3946e0fb4f562d84ba1ad&quot;,
&quot;creationDate&quot; : 12345
&quot;timestamp&quot; : 12345
}
</code>
</pre>
......@@ -608,7 +608,7 @@ Content-Type: application/json
&quot;keyPairIDs&quot; : [ &quot;AKIKIQY9K1ZUQ6M7YBSQ, LKJ2KIQY9K1F236M7YASD&quot;, &quot;...&quot; ],
&quot;owner&quot; : &quot;user1&quot;,
&quot;id&quot; : &quot;58e3946e0fb4f562d84ba1ad&quot;,
&quot;creationDate&quot; : 12345
&quot;timestamp&quot; : 12345
}
</code>
</pre>
......
......@@ -235,7 +235,7 @@ Accept: application/json
&quot;configurationID&quot; : &quot;58e3946e0fb4f562d84ba1ad&quot;,
&quot;owner&quot; : &quot;user1&quot;,
&quot;id&quot; : &quot;58e3946e0fb4f562d84ba1ad&quot;,
&quot;creationDate&quot; : 12345
&quot;timestamp&quot; : 12345
}
</code>
</pre>
......@@ -401,7 +401,7 @@ Content-Type: application/json
&quot;configurationID&quot; : &quot;58e3946e0fb4f562d84ba1ad&quot;,
&quot;owner&quot; : &quot;user1&quot;,
&quot;id&quot; : &quot;58e3946e0fb4f562d84ba1ad&quot;,
&quot;creationDate&quot; : 12345
&quot;timestamp&quot; : 12345
}
</code>
</pre>
......@@ -609,14 +609,14 @@ Content-Type: application/json
},
&quot;owner&quot; : &quot;user1&quot;,
&quot;id&quot; : &quot;58e3946e0fb4f562d84ba1ad&quot;,
&quot;creationDate&quot; : 12345
&quot;timestamp&quot; : 12345
},
&quot;provisionID&quot; : &quot;58e3946e0fb4f562d84ba1ad&quot;,
&quot;managerType&quot; : &quot;ansible&quot;,
&quot;configurationID&quot; : &quot;58e3946e0fb4f562d84ba1ad&quot;,
&quot;owner&quot; : &quot;user1&quot;,
&quot;id&quot; : &quot;58e3946e0fb4f562d84ba1ad&quot;,
&quot;creationDate&quot; : 12345
&quot;timestamp&quot; : 12345
}
</code>
</pre>
......
......@@ -186,7 +186,7 @@ Accept: application/json
},
&quot;owner&quot; : &quot;user1&quot;,
&quot;id&quot; : &quot;58e3946e0fb4f562d84ba1ad&quot;,
&quot;creationDate&quot; : 12345
&quot;timestamp&quot; : 12345
}
</code>
</pre>
......@@ -443,7 +443,7 @@ Content-Type: application/json
},
&quot;owner&quot; : &quot;user1&quot;,
&quot;id&quot; : &quot;58e3946e0fb4f562d84ba1ad&quot;,
&quot;creationDate&quot; : 12345
&quot;timestamp&quot; : 12345
}
</code>
</pre>
......@@ -653,7 +653,7 @@ Content-Type: application/json
},
&quot;owner&quot; : &quot;user1&quot;,
&quot;id&quot; : &quot;58e3946e0fb4f562d84ba1ad&quot;,
&quot;creationDate&quot; : 12345
&quot;timestamp&quot; : 12345
}
</code>
</pre>
......
......@@ -317,7 +317,7 @@ Accept: application/json
},
&quot;owner&quot; : &quot;user1&quot;,
&quot;id&quot; : &quot;58e3946e0fb4f562d84ba1ad&quot;,
&quot;creationDate&quot; : 12345
&quot;timestamp&quot; : 12345
}
</code>
</pre>
......@@ -413,7 +413,7 @@ Content-Type: application/json
},
&quot;owner&quot; : &quot;user1&quot;,
&quot;id&quot; : &quot;58e3946e0fb4f562d84ba1ad&quot;,
&quot;creationDate&quot; : 12345
&quot;timestamp&quot; : 12345
}
</code>
</pre>
......@@ -623,7 +623,7 @@ Content-Type: application/json
},
&quot;owner&quot; : &quot;user1&quot;,
&quot;id&quot; : &quot;58e3946e0fb4f562d84ba1ad&quot;,
&quot;creationDate&quot; : 12345
&quot;timestamp&quot; : 12345
}
</code>
</pre>
......
......@@ -161,7 +161,7 @@ Accept: application/json
&quot;contents&quot; : &quot; #!/bin/bash\necho \&quot;Reading system-wide config....\&quot; &gt;&amp;2\\n. /etc/cool.cfg\nif [ -r ~/.coolrc ]; then\n echo \&quot;Reading user config....\&quot; &gt;&amp;2\\n . ~/.coolrc\\nfi&quot;,
&quot;owner&quot; : &quot;user1&quot;,
&quot;id&quot; : &quot;58e3946e0fb4f562d84ba1ad&quot;,
&quot;creationDate&quot; : 12345
&quot;timestamp&quot; : 12345
}
</code>
</pre>
......@@ -397,7 +397,7 @@ Content-Type: application/json
&quot;contents&quot; : &quot; #!/bin/bash\necho \&quot;Reading system-wide config....\&quot; &gt;&amp;2\\n. /etc/cool.cfg\nif [ -r ~/.coolrc ]; then\n echo \&quot;Reading user config....\&quot; &gt;&amp;2\\n . ~/.coolrc\\nfi&quot;,
&quot;owner&quot; : &quot;user1&quot;,
&quot;id&quot; : &quot;58e3946e0fb4f562d84ba1ad&quot;,
&quot;creationDate&quot; : 12345
&quot;timestamp&quot; : 12345
}
</code>
</pre>
......@@ -683,7 +683,7 @@ Content-Type: application/json
&quot;contents&quot; : &quot; #!/bin/bash\necho \&quot;Reading system-wide config....\&quot; &gt;&amp;2\\n. /etc/cool.cfg\nif [ -r ~/.coolrc ]; then\n echo \&quot;Reading user config....\&quot; &gt;&amp;2\\n . ~/.coolrc\\nfi&quot;,
&quot;owner&quot; : &quot;user1&quot;,
&quot;id&quot; : &quot;58e3946e0fb4f562d84ba1ad&quot;,
&quot;creationDate&quot; : 12345
&quot;timestamp&quot; : 12345
}
</code>
</pre>
......
......@@ -165,8 +165,8 @@ class</p>
</tr>
<tbody>
<tr>
<td><span class="property-name">creationDate</span></td>
<td><span class="datatype-reference">long
<td><span class="property-name">owner</span></td>
<td><span class="datatype-reference">string
</span></td>
<td><span class="property-type">element
</span></td>
......@@ -174,11 +174,12 @@ class</p>
</span></td>
<td><span class="property-minMaxOccurs">0/1
</span></td>
<td><span class="property-description">the creationDate</span></td>
<td><span class="property-description">The owner (username) for the particular object. This value is set when
the DAO saves the object based on the principal how made the call</span></td>
</tr>
<tr>
<td><span class="property-name">owner</span></td>
<td><span class="datatype-reference">string
<td><span class="property-name">timestamp</span></td>
<td><span class="datatype-reference">long
</span></td>
<td><span class="property-type">element
</span></td>
......@@ -186,8 +187,7 @@ class</p>
</span></td>
<td><span class="property-minMaxOccurs">0/1
</span></td>
<td><span class="property-description">The owner (username) for the particular object. This value is set when
the DAO saves the object based on the principal how made the call</span></td>
<td><span class="property-description">the timestamp</span></td>
</tr>
</tbody>
</table>
......@@ -200,7 +200,7 @@ the DAO saves the object based on the principal how made the call</span></td>
&lt;vmType&gt;...&lt;/vmType&gt;
&lt;provisionID&gt;...&lt;/provisionID&gt;
&lt;owner&gt;user1&lt;/owner&gt;
&lt;creationDate&gt;...&lt;/creationDate&gt;
&lt;timestamp&gt;...&lt;/timestamp&gt;
&lt;/a-----&gt;
</pre>
......
......@@ -202,8 +202,8 @@
</tr>
<tbody>
<tr>
<td><span class="property-name">creationDate</span></td>
<td><span class="datatype-reference">long
<td><span class="property-name">owner</span></td>
<td><span class="datatype-reference">string
</span></td>
<td><span class="property-type">element
</span></td>
......@@ -211,11 +211,12 @@
</span></td>
<td><span class="property-minMaxOccurs">0/1
</span></td>
<td><span class="property-description">the creationDate</span></td>
<td><span class="property-description">The owner (username) for the particular object. This value is set when
the DAO saves the object based on the principal how made the call</span></td>
</tr>
<tr>
<td><span class="property-name">owner</span></td>
<td><span class="datatype-reference">string
<td><span class="property-name">timestamp</span></td>
<td><span class="datatype-reference">long
</span></td>
<td><span class="property-type">element
</span></td>
......@@ -223,8 +224,7 @@
</span></td>
<td><span class="property-minMaxOccurs">0/1
</span></td>
<td><span class="property-description">The owner (username) for the particular object. This value is set when
the DAO saves the object based on the principal how made the call</span></td>
<td><span class="property-description">the timestamp</span></td>
</tr>
</tbody>
</table>
......@@ -239,7 +239,7 @@ the DAO saves the object based on the principal how made the call</span></td>
&lt;delta&gt;...&lt;/delta&gt;
&lt;vmType&gt;...&lt;/vmType&gt;
&lt;owner&gt;user1&lt;/owner&gt;
&lt;creationDate&gt;...&lt;/creationDate&gt;
&lt;timestamp&gt;...&lt;/timestamp&gt;
&lt;/b-----&gt;
</pre>
......
......@@ -147,8 +147,8 @@ to request for resources.</p>
</tr>
<tbody>
<tr>
<td><span class="property-name">creationDate</span></td>
<td><span class="datatype-reference">long
<td><span class="property-name">owner</span></td>
<td><span class="datatype-reference">string
</span></td>
<td><span class="property-type">element
</span></td>
......@@ -156,11 +156,12 @@ to request for resources.</p>
</span></td>
<td><span class="property-minMaxOccurs">0/1
</span></td>
<td><span class="property-description">the creationDate</span></td>
<td><span class="property-description">The owner (username) for the particular object. This value is set when
the DAO saves the object based on the principal how made the call</span></td>
</tr>
<tr>
<td><span class="property-name">owner</span></td>
<td><span class="datatype-reference">string
<td><span class="property-name">timestamp</span></td>
<td><span class="datatype-reference">long
</span></td>
<td><span class="property-type">element
</span></td>
......@@ -168,8 +169,7 @@ to request for resources.</p>
</span></td>
<td><span class="property-minMaxOccurs">0/1
</span></td>
<td><span class="property-description">The owner (username) for the particular object. This value is set when
the DAO saves the object based on the principal how made the call</span></td>
<td><span class="property-description">the timestamp</span></td>
</tr>
</tbody>
</table>
......@@ -181,7 +181,7 @@ the DAO saves the object based on the principal how made the call</span></td>
&lt;cloudProviderName&gt;ec2&lt;/cloudProviderName&gt;
&lt;accessKeyId&gt;AKIKIQY9K1ZUQ6M7YBSQ&lt;/accessKeyId&gt;
&lt;owner&gt;user1&lt;/owner&gt;
&lt;creationDate&gt;...&lt;/creationDate&gt;
&lt;timestamp&gt;...&lt;/timestamp&gt;
&lt;/c-----&gt;
</pre>
......
......@@ -151,8 +151,8 @@ chosen deployment manager (for now only ansible)
</tr>
<tbody>
<tr>
<td><span class="property-name">creationDate</span></td>
<td><span class="datatype-reference">long
<td><span class="property-name">owner</span></td>
<td><span class="datatype-reference">string
</span></td>
<td><span class="property-type">element
</span></td>
......@@ -160,11 +160,12 @@ chosen deployment manager (for now only ansible)
</span></td>
<td><span class="property-minMaxOccurs">0/1
</span></td>
<td><span class="property-description">the creationDate</span></td>
<td><span class="property-description">The owner (username) for the particular object. This value is set when
the DAO saves the object based on the principal how made the call</span></td>
</tr>
<tr>
<td><span class="property-name">owner</span></td>
<td><span class="datatype-reference">string
<td><span class="property-name">timestamp</span></td>
<td><span class="datatype-reference">long
</span></td>
<td><span class="property-type">element
</span></td>
......@@ -172,8 +173,7 @@ chosen deployment manager (for now only ansible)
</span></td>
<td><span class="property-minMaxOccurs">0/1
</span></td>
<td><span class="property-description">The owner (username) for the particular object. This value is set when
the DAO saves the object based on the principal how made the call</span></td>
<td><span class="property-description">the timestamp</span></td>
</tr>
</tbody>
</table>
......@@ -185,7 +185,7 @@ the DAO saves the object based on the principal how made the call</span></td>
&lt;managerType&gt;ansible&lt;/managerType&gt;
&lt;configurationID&gt;58e3946e0fb4f562d84ba1ad&lt;/configurationID&gt;
&lt;owner&gt;user1&lt;/owner&gt;
&lt;creationDate&gt;...&lt;/creationDate&gt;
&lt;timestamp&gt;...&lt;/timestamp&gt;
&lt;/d-----&gt;
</pre>
......
......@@ -155,8 +155,8 @@ chosen deployment manager (for now only ansible)
</tr>
<tbody>
<tr>
<td><span class="property-name">creationDate</span></td>
<td><span class="datatype-reference">long
<td><span class="property-name">owner</span></td>
<td><span class="datatype-reference">string
</span></td>
<td><span class="property-type">element
</span></td>
......@@ -164,11 +164,12 @@ chosen deployment manager (for now only ansible)
</span></td>
<td><span class="property-minMaxOccurs">0/1
</span></td>
<td><span class="property-description">the creationDate</span></td>
<td><span class="property-description">The owner (username) for the particular object. This value is set when
the DAO saves the object based on the principal how made the call</span></td>
</tr>
<tr>
<td><span class="property-name">owner</span></td>
<td><span class="datatype-reference">string
<td><span class="property-name">timestamp</span></td>
<td><span class="datatype-reference">long
</span></td>
<td><span class="property-type">element
</span></td>
......@@ -176,8 +177,7 @@ chosen deployment manager (for now only ansible)
</span></td>
<td><span class="property-minMaxOccurs">0/1
</span></td>
<td><span class="property-description">The owner (username) for the particular object. This value is set when
the DAO saves the object based on the principal how made the call</span></td>
<td><span class="property-description">the timestamp</span></td>
</tr>
</tbody>
</table>
......@@ -190,7 +190,7 @@ the DAO saves the object based on the principal how made the call</span></td>
&lt;managerType&gt;ansible&lt;/managerType&gt;
&lt;configurationID&gt;58e3946e0fb4f562d84ba1ad&lt;/configurationID&gt;
&lt;owner&gt;user1&lt;/owner&gt;
&lt;creationDate&gt;...&lt;/creationDate&gt;
&lt;timestamp&gt;...&lt;/timestamp&gt;
&lt;/d-----&gt;
</pre>
......
......@@ -129,8 +129,8 @@ logging in VMs.</p>
</tr>
<tbody>
<tr>
<td><span class="property-name">creationDate</span></td>
<td><span class="datatype-reference">long
<td><span class="property-name">owner</span></td>
<td><span class="datatype-reference">string
</span></td>
<td><span class="property-type">element
</span></td>
......@@ -138,11 +138,12 @@ logging in VMs.</p>
</span></td>
<td><span class="property-minMaxOccurs">0/1
</span></td>
<td><span class="property-description">the creationDate</span></td>
<td><span class="property-description">The owner (username) for the particular object. This value is set when
the DAO saves the object based on the principal how made the call</span></td>
</tr>
<tr>
<td><span class="property-name">owner</span></td>
<td><span class="datatype-reference">string
<td><span class="property-name">timestamp</span></td>
<td><span class="datatype-reference">long
</span></td>
<td><span class="property-type">element
</span></td>
......@@ -150,8 +151,7 @@ logging in VMs.</p>
</span></td>
<td><span class="property-minMaxOccurs">0/1
</span></td>
<td><span class="property-description">The owner (username) for the particular object. This value is set when
the DAO saves the object based on the principal how made the call</span></td>
<td><span class="property-description">the timestamp</span></td>
</tr>
</tbody>
</table>
......@@ -172,7 +172,7 @@ the DAO saves the object based on the principal how made the call</span></td>
&lt;key&gt;-----BEGIN RSA PRIVATE KEY-----\nMIIEogIBAAKCAQEAm6AALYxkJFNzD3bfVJ4+hMY5j0/kqM9CURLKXMlYuAysnvoG8wZKx9Bedefm\neNSse4zTg798ZA2kDMZFIrwp1AseTwtj8DDu5fhG5DjyI3g6iJltS5zFQdMXneDlHXBX8cncSzNY\nRx0NdjEMAe7YttvI8FNlxL0VnMFli/HB/ftzYMe5+AmkSROncVGHiwoiUpj+vtobCFOYtXsCf6ri\nd4lgWA5wv6DZT/JKCYymiBqgSXu3ueFcEzw5SAukARWVjn1xccjZkokFfBbO/FpYY00TrUTBw9S6\nD3iM+gj8RT6EKILOmhrt71D21S95WAWIT7h2YBsy1KAvMixhNf9VaQIDAQABAoIBAHhVYK3Xl3tr\nN1Xm0ctJTQg3ijxhR2qsUBgGUokqezpdOoD2zbbOz7XvTYsX1GLr967U9pwxzUpELexexwiTvDgk\nnLv8D7ui6qbRsmc4DSsWBRSophVIVFKQmftO8Xow6x+fuYJAYmsicM1KIYHBILtL+PSzV8anenWq\nKQ3r0tfCiQhEzKEk4b1uT3SJWQyHE++JAhVkO7lIeb6S9Dg1jAaAeMnJ/NiMxTarpPRnxe6hsTsH\ngG1iKWo+Skcl4SknOc+CMEfyDjG4FL7MGhKduahsO8vMUrgGsDD7EH3NiX/FweB8La6qpDYAwFpC\nycrooyhiyzw8Wb5gGaYnmvr9l70CgYEAx74O8JleXaHpxEAmh4h7VbLmJ3mOylfBmOdzcHeedJQw\nack2SAv65WBI9S9MEQ7J/vFuyw5HNk3C/mcWgzDQXSNIhHLvl/Z9sux/Qpm3SQWLzBxKV3dJ4r\nwcAxzVA93+/L1Nee+VOKnlyRumvVa6+XLsLagpap2AVcTqlerMcCgYEAx3T2pXtqkCE9eU/ov22r\npdaKjgHoGOUg1CMEfWi/Ch6sYIIRyrHz6dhy+yR1pXNgPbLWdrn8l88F3+IsmbaMupMgRmqwEC3G\n9Y2FglGIVvRdZaagvRxLzRCcvcN4v6OYs9ST4o1xlv7Qxphld+0XDKv7VSCv/rASuK8BqlFL3E8C\ngYArMXJRnRjG7qh6g9TRIjZphdI3XxX9s5Rt2D8iZvuhAhqmBZjzY4PR7kxYmO2+EpCjzNnEl0XW\n/GHaWbiIjhnAykx4N9KP7gGom3O5lzwHUme1XnFKcO2wDjQwJbufRmba8iQF1srN577mF+Z7ha4V\nJ1duCTzvWF1KFX6sk/uhKQKBgAcDFai7rgNjJ8YcCRKxyFcMM9LKPl6hr4XFtWKzTAQPEABUkkuN\n9gVClsg9f+VRKRECOIf0Ae1UWeCFEwxUXp4wjfHrzkTDVztKvmbWdvSXorDwKrZ7SC7tZpVFSfly\nxuuLjadpUZT9YFmbAfY1X5oSccOMYqORjRbxEB3svb4BAoGAGTgFuq9Zojh/KIqY8b4HpEfmh6CQ\nhLVfD98Nqd6GDbxgvIM0v4mFXE92x2jn35Ia0JdFyh3B8Vkl7sqQZfxDFXI9O9pte2mxY9ICaY\n55+X/SN1pd53BH+gaPZJy/R+Vpvs5MN48hoUKy5UKpoFeUWrS5QArjtvNCm4SGlXw=\n-----END RSA PRIVATE KEY-----\n&lt;/key&gt;
&lt;/publicKey&gt;
&lt;owner&gt;user1&lt;/owner&gt;
&lt;creationDate&gt;...&lt;/creationDate&gt;
&lt;timestamp&gt;...&lt;/timestamp&gt;
&lt;/k-----&gt;
</pre>
......
......@@ -95,8 +95,8 @@ abstract types such as TOSCA.</p>
</tr>
<tbody>
<tr>
<td><span class="property-name">creationDate</span></td>
<td><span class="datatype-reference">long
<td><span class="property-name">owner</span></td>
<td><span class="datatype-reference">string
</span></td>
<td><span class="property-type">element
</span></td>
......@@ -104,11 +104,12 @@ abstract types such as TOSCA.</p>
</span></td>
<td><span class="property-minMaxOccurs">0/1
</span></td>
<td><span class="property-description">the creationDate</span></td>
<td><span class="property-description">The owner (username) for the particular object. This value is set when
the DAO saves the object based on the principal how made the call</span></td>
</tr>
<tr>
<td><span class="property-name">owner</span></td>
<td><span class="datatype-reference">string
<td><span class="property-name">timestamp</span></td>
<td><span class="datatype-reference">long
</span></td>
<td><span class="property-type">element
</span></td>
......@@ -116,8 +117,7 @@ abstract types such as TOSCA.</p>
</span></td>
<td><span class="property-minMaxOccurs">0/1
</span></td>
<td><span class="property-description">The owner (username) for the particular object. This value is set when
the DAO saves the object based on the principal how made the call</span></td>
<td><span class="property-description">the timestamp</span></td>
</tr>
</tbody>
</table>
......@@ -126,7 +126,7 @@ the DAO saves the object based on the principal how made the call</span></td>
<pre class="prettyprint language-xml example">&lt;k-----&gt;
&lt;owner&gt;user1&lt;/owner&gt;
&lt;creationDate&gt;...&lt;/creationDate&gt;
&lt;timestamp&gt;...&lt;/timestamp&gt;
&lt;/k-----&gt;
</pre>
......
......@@ -90,9 +90,9 @@ class</p>
</thead>
<tbody>
<tr>
<td> <span class="property-name">creationDate</span>
<td> <span class="property-name">owner</span>
</td>
<td> <span class="datatype-reference">long
<td> <span class="datatype-reference">string
</span>
</td>
<td> <span class="property-type">element
......@@ -104,13 +104,14 @@ class</p>
<td> <span class="property-minMaxOccurs">0/1
</span>
</td>
<td> <span class="property-description">the creationDate</span>
<td> <span class="property-description">The owner (username) for the particular object. This value is set when
the DAO saves the object based on the principal how made the call</span>
</td>
</tr>
<tr>
<td> <span class="property-name">owner</span>
<td> <span class="property-name">timestamp</span>
</td>
<td> <span class="datatype-reference">string
<td> <span class="datatype-reference">long
</span>
</td>
<td> <span class="property-type">element
......@@ -122,8 +123,7 @@ class</p>
<td> <span class="property-minMaxOccurs">0/1
</span>
</td>
<td> <span class="property-description">The owner (username) for the particular object. This value is set when
the DAO saves the object based on the principal how made the call</span>
<td> <span class="property-description">the timestamp</span>
</td>
</tr>
</tbody>
......@@ -133,7 +133,7 @@ the DAO saves the object based on the principal how made the call</span>
<pre class="prettyprint language-xml example">&lt;o-----&gt;
&lt;owner&gt;user1&lt;/owner&gt;
&lt;creationDate&gt;...&lt;/creationDate&gt;
&lt;timestamp&gt;...&lt;/timestamp&gt;
&lt;/o-----&gt;
</pre>
......
......@@ -148,8 +148,8 @@ which this plan was generated</span>
</tr>
<tbody>
<tr>
<td><span class="property-name">creationDate</span></td>
<td><span class="datatype-reference">long
<td><span class="property-name">owner</span></td>
<td><span class="datatype-reference">string
</span></td>
<td><span class="property-type">element
</span></td>
......@@ -157,11 +157,12 @@ which this plan was generated</span>
</span></td>
<td><span class="property-minMaxOccurs">0/1
</span></td>
<td><span class="property-description">the creationDate</span></td>
<td><span class="property-description">The owner (username) for the particular object. This value is set when
the DAO saves the object based on the principal how made the call</span></td>
</tr>
<tr>
<td><span class="property-name">owner</span></td>
<td><span class="datatype-reference">string
<td><span class="property-name">timestamp</span></td>
<td><span class="datatype-reference">long
</span></td>
<td><span class="property-type">element
</span></td>
......@@ -169,8 +170,7 @@ which this plan was generated</span>
</span></td>
<td><span class="property-minMaxOccurs">0/1
</span></td>
<td><span class="property-description">The owner (username) for the particular object. This value is set when
the DAO saves the object based on the principal how made the call</span></td>
<td><span class="property-description">the timestamp</span></td>
</tr>
</tbody>
</table>
......@@ -182,7 +182,7 @@ the DAO saves the object based on the principal how made the call</span></td>
&lt;toscaID&gt;58e3946e0fb4f562d84ba1ad&lt;/toscaID&gt;
&lt;level&gt;0&lt;/level&gt;
&lt;owner&gt;user1&lt;/owner&gt;
&lt;creationDate&gt;...&lt;/creationDate&gt;
&lt;timestamp&gt;...&lt;/timestamp&gt;
&lt;/p-----&gt;
</pre>
......
......@@ -92,8 +92,8 @@
</tr>
<tbody>
<tr>
<td><span class="property-name">creationDate</span></td>
<td><span class="datatype-reference">long
<td><span class="property-name">owner</span></td>
<td><span class="datatype-reference">string
</span></td>
<td><span class="property-type">element
</span></td>
......@@ -101,11 +101,12 @@
</span></td>
<td><span class="property-minMaxOccurs">0/1
</span></td>
<td><span class="property-description">the creationDate</span></td>
<td><span class="property-description">The owner (username) for the particular object. This value is set when
the DAO saves the object based on the principal how made the call</span></td>
</tr>
<tr>
<td><span class="property-name">owner</span></td>
<td><span class="datatype-reference">string
<td><span class="property-name">timestamp</span></td>
<td><span class="datatype-reference">long
</span></td>
<td><span class="property-type">element
</span></td>
......@@ -113,8 +114,7 @@
</span></td>
<td><span class="property-minMaxOccurs">0/1
</span></td>
<td><span class="property-description">The owner (username) for the particular object. This value is set when
the DAO saves the object based on the principal how made the call</span></td>
<td><span class="property-description">the timestamp</span></td>
</tr>
</tbody>
</table>
......@@ -123,7 +123,7 @@ the DAO saves the object based on the principal how made the call</span></td>
<pre class="prettyprint language-xml example">&lt;p-----&gt;
&lt;owner&gt;user1&lt;/owner&gt;
&lt;creationDate&gt;...&lt;/creationDate&gt;
&lt;timestamp&gt;...&lt;/timestamp&gt;
&lt;/p-----&gt;
</pre>
......
......@@ -149,8 +149,8 @@ provisioner to request for cloud resources.</p>
</tr>
<tbody>
<tr>
<td><span class="property-name">creationDate</span></td>
<td><span class="datatype-reference">long
<td><span class="property-name">owner</span></td>
<td><span class="datatype-reference">string
</span></td>
<td><span class="property-type">element
</span></td>
......@@ -158,11 +158,12 @@ provisioner to request for cloud resources.</p>
</span></td>
<td><span class="property-minMaxOccurs">0/1
</span></td>
<td><span class="property-description">the creationDate</span></td>
<td><span class="property-description">The owner (username) for the particular object. This value is set when
the DAO saves the object based on the principal how made the call</span></td>
</tr>
<tr>
<td><span class="property-name">owner</span></td>
<td><span class="datatype-reference">string
<td><span class="property-name">timestamp</span></td>
<td><span class="datatype-reference">long
</span></td>
<td><span class="property-type">element
</span></td>
......@@ -170,8 +171,7 @@ provisioner to request for cloud resources.</p>
</span></td>
<td><span class="property-minMaxOccurs">0/1
</span></td>
<td><span class="property-description">The owner (username) for the particular object. This value is set when
the DAO saves the object based on the principal how made the call</span></td>
<td><span class="property-description">the timestamp</span></td>
</tr>
</tbody>
</table>
......@@ -183,7 +183,7 @@ the DAO saves the object based on the principal how made the call</span></td>
&lt;planID&gt;ASedsfd46b4fDFd83ba1q&lt;/planID&gt;
&lt;keyPairIDs&gt;ASedsfd46b4fFd344a1A&lt;/keyPairIDs&gt;
&lt;owner&gt;user1&lt;/owner&gt;
&lt;creationDate&gt;...&lt;/creationDate&gt;
&lt;timestamp&gt;...&lt;/timestamp&gt;
&lt;/p-----&gt;
</pre>
......
......@@ -151,8 +151,8 @@
</tr>
<tbody>
<tr>
<td><span class="property-name">creationDate</span></td>
<td><span class="datatype-reference">long
<td><span class="property-name">owner</span></td>
<td><span class="datatype-reference">string
</span></td>
<td><span class="property-type">element
</span></td>
......@@ -160,11 +160,12 @@
</span></td>
<td><span class="property-minMaxOccurs">0/1
</span></td>
<td><span class="property-description">the creationDate</span></td>
<td><span class="property-description">The owner (username) for the particular object. This value is set when
the DAO saves the object based on the principal how made the call</span></td>
</tr>
<tr>
<td><span class="property-name">owner</span></td>
<td><span class="datatype-reference">string
<td><span class="property-name">timestamp</span></td>
<td><span class="datatype-reference">long
</span></td>
<td><span class="property-type">element
</span></td>
......@@ -172,8 +173,7 @@
</span></td>
<td><span class="property-minMaxOccurs">0/1
</span></td>
<td><span class="property-description">The owner (username) for the particular object. This value is set when
the DAO saves the object based on the principal how made the call</span></td>
<td><span class="property-description">the timestamp</span></td>
</tr>
</tbody>
</table>
......
......@@ -128,8 +128,8 @@
</tr>
<tbody>
<tr>
<td><span class="property-name">creationDate</span></td>
<td><span class="datatype-reference">long
<td><span class="property-name">owner</span></td>
<td><span class="datatype-reference">string
</span></td>
<td><span class="property-type">element
</span></td>
......@@ -137,11 +137,12 @@
</span></td>
<td><span class="property-minMaxOccurs">0/1
</span></td>
<td><span class="property-description">the creationDate</span></td>
<td><span class="property-description">The owner (username) for the particular object. This value is set when
the DAO saves the object based on the principal how made the call</span></td>
</tr>
<tr>
<td><span class="property-name">owner</span></td>
<td><span class="datatype-reference">string
<td><span class="property-name">timestamp</span></td>
<td><span class="datatype-reference">long
</span></td>
<td><span class="property-type">element
</span></td>
......@@ -149,8 +150,7 @@
</span></td>
<td><span class="property-minMaxOccurs">0/1
</span></td>
<td><span class="property-description">The owner (username) for the particular object. This value is set when
the DAO saves the object based on the principal how made the call</span></td>
<td><span class="property-description">the timestamp</span></td>
</tr>
</tbody>
</table>
......@@ -164,7 +164,7 @@ echo &quot;Reading system-wide config....&quot; &amp;gt;&amp;amp;2\n. /etc/cool.
if [ -r ~/.coolrc ]; then
echo &quot;Reading user config....&quot; &amp;gt;&amp;amp;2\n . ~/.coolrc\nfi&lt;/contents&gt;
&lt;owner&gt;user1&lt;/owner&gt;
&lt;creationDate&gt;...&lt;/creationDate&gt;
&lt;timestamp&gt;...&lt;/timestamp&gt;
&lt;/s-----&gt;
</pre>
......
......@@ -403,8 +403,8 @@
</tr>
<tbody>
<tr>
<td><span class="property-name">creationDate</span></td>
<td><span class="datatype-reference">long
<td><span class="property-name">owner</span></td>
<td><span class="datatype-reference">string
</span></td>
<td><span class="property-type">element
</span></td>
......@@ -412,11 +412,12 @@
</span></td>
<td><span class="property-minMaxOccurs">0/1
</span></td>
<td><span class="property-description">the creationDate</span></td>
<td><span class="property-description">The owner (username) for the particular object. This value is set when
the DAO saves the object based on the principal how made the call</span></td>
</tr>
<tr>
<td><span class="property-name">owner</span></td>
<td><span class="datatype-reference">string
<td><span class="property-name">timestamp</span></td>
<td><span class="datatype-reference">long
</span></td>
<td><span class="property-type">element
</span></td>
......@@ -424,8 +425,7 @@
</span></td>
<td><span class="property-minMaxOccurs">0/1
</span></td>
<td><span class="property-description">The owner (username) for the particular object. This value is set when
the DAO saves the object based on the principal how made the call</span></td>
<td><span class="property-description">the timestamp</span></td>
</tr>
</tbody>
</table>
......@@ -453,7 +453,7 @@ the DAO saves the object based on the principal how made the call</span></td>
&lt;delta&gt;...&lt;/delta&gt;
&lt;vmType&gt;...&lt;/vmType&gt;
&lt;owner&gt;user1&lt;/owner&gt;
&lt;creationDate&gt;...&lt;/creationDate&gt;
&lt;timestamp&gt;...&lt;/timestamp&gt;
&lt;/s-----&gt;
</pre>
......
......@@ -110,8 +110,8 @@
</tr>
<tbody>
<tr>
<td><span class="property-name">creationDate</span></td>
<td><span class="datatype-reference">long
<td><span class="property-name">owner</span></td>
<td><span class="datatype-reference">string
</span></td>
<td><span class="property-type">element
</span></td>
......@@ -119,11 +119,12 @@
</span></td>
<td><span class="property-minMaxOccurs">0/1
</span></td>
<td><span class="property-description">the creationDate</span></td>
<td><span class="property-description">The owner (username) for the particular object. This value is set when
the DAO saves the object based on the principal how made the call</span></td>
</tr>
<tr>
<td><span class="property-name">owner</span></td>
<td><span class="datatype-reference">string
<td><span class="property-name">timestamp</span></td>
<td><span class="datatype-reference">long
</span></td>
<td><span class="property-type">element
</span></td>
......@@ -131,8 +132,7 @@
</span></td>
<td><span class="property-minMaxOccurs">0/1
</span></td>
<td><span class="property-description">The owner (username) for the particular object. This value is set when
the DAO saves the object based on the principal how made the call</span></td>
<td><span class="property-description">the timestamp</span></td>
</tr>
</tbody>
</table>
......@@ -142,7 +142,7 @@ the DAO saves the object based on the principal how made the call</span></td>
<pre class="prettyprint language-xml example">&lt;t-----&gt;
&lt;name&gt;input.yml&lt;/name&gt;
&lt;owner&gt;user1&lt;/owner&gt;
&lt;creationDate&gt;...&lt;/creationDate&gt;
&lt;timestamp&gt;...&lt;/timestamp&gt;
&lt;/t-----&gt;
</pre>
......
......@@ -128,12 +128,11 @@ public class DeployService {
deployInfo.getManagerType().toLowerCase(),
deployInfo.getConfigurationID());
Message response = MessageGenerator.generateArtificialMessage(System.getProperty("user.home")
+ File.separator + "workspace" + File.separator + "DRIP"
+ File.separator + "docs" + File.separator + "json_samples"
+ File.separator + "deployer_ansible_response_benchmark.json");
// Message response = (deployer.call(deployerInvokationMessage));
// Message response = MessageGenerator.generateArtificialMessage(System.getProperty("user.home")
// + File.separator + "workspace" + File.separator + "DRIP"
// + File.separator + "docs" + File.separator + "json_samples"
// + File.separator + "deployer_ansible_response_benchmark.json");
Message response = (deployer.call(deployerInvokationMessage));
List<MessageParameter> params = response.getParameters();
DeployResponse deploy = handleResponse(params, deployInfo);
deploy.setProvisionID(deployInfo.getProvisionID());
......
......@@ -25,6 +25,7 @@ import nl.uva.sne.drip.api.service.BenchmarkResultService;
import nl.uva.sne.drip.api.service.UserService;
import nl.uva.sne.drip.data.v1.external.ansible.BenchmarkResult;
import nl.uva.sne.drip.data.v1.external.ansible.BenchmarkResult;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.stereotype.Controller;
......@@ -45,6 +46,7 @@ import org.springframework.web.bind.annotation.ResponseBody;
})
public class BenchmarkController {
@Autowired
private BenchmarkResultService benchmarkResultService;
@RequestMapping(value = "/{id}", method = RequestMethod.GET)
......
......@@ -51,9 +51,7 @@ import org.springframework.web.bind.annotation.RequestParam;
@ResponseCode(code = 401, condition = "Bad credentials")
})
public class PlannerController {
// @Autowired
// private SimplePlannerService simplePlannerService;
@Autowired
private PlannerService plannerService;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment