Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
CONF
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
UvA
CONF
Commits
5dbca3ef
Commit
5dbca3ef
authored
Nov 01, 2019
by
Spiros Koulouzis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
changed types
parent
9a82a58c
Changes
9
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
685 additions
and
688 deletions
+685
-688
Credentials.java
...mons/src/main/java/nl/uva/sne/drip/model/Credentials.java
+2
-2
NodeTemplate.java
...ons/src/main/java/nl/uva/sne/drip/model/NodeTemplate.java
+37
-56
TopologyTemplate.java
...src/main/java/nl/uva/sne/drip/model/TopologyTemplate.java
+66
-52
ToscaTemplate.java
...ns/src/main/java/nl/uva/sne/drip/model/ToscaTemplate.java
+530
-550
User.java
drip-commons/src/main/java/nl/uva/sne/drip/model/User.java
+21
-1
ProvisionerService.java
...main/java/nl/uva/sne/drip/service/ProvisionerService.java
+4
-2
NodeTemplate.yml
openAPI/TOSCA/NodeTemplate.yml
+6
-6
TopologyTemplate.yml
openAPI/TOSCA/TopologyTemplate.yml
+5
-5
ToscaTemplate.yml
openAPI/TOSCA/ToscaTemplate.yml
+14
-14
No files found.
drip-commons/src/main/java/nl/uva/sne/drip/model/Credentials.java
View file @
5dbca3ef
...
@@ -18,7 +18,7 @@ import org.springframework.data.annotation.Id;
...
@@ -18,7 +18,7 @@ import org.springframework.data.annotation.Id;
* Credentials
* Credentials
*/
*/
@Validated
@Validated
@javax
.
annotation
.
Generated
(
value
=
"io.swagger.codegen.languages.SpringCodegen"
,
date
=
"2019-11-01T1
3:58:45.661
Z"
)
@javax
.
annotation
.
Generated
(
value
=
"io.swagger.codegen.languages.SpringCodegen"
,
date
=
"2019-11-01T1
4:10:53.529
Z"
)
public
class
Credentials
{
public
class
Credentials
{
/**
/**
...
...
drip-commons/src/main/java/nl/uva/sne/drip/model/NodeTemplate.java
View file @
5dbca3ef
...
@@ -3,7 +3,6 @@ package nl.uva.sne.drip.model;
...
@@ -3,7 +3,6 @@ package nl.uva.sne.drip.model;
import
java.util.Objects
;
import
java.util.Objects
;
import
com.fasterxml.jackson.annotation.JsonProperty
;
import
com.fasterxml.jackson.annotation.JsonProperty
;
import
com.fasterxml.jackson.annotation.JsonCreator
;
import
com.fasterxml.jackson.annotation.JsonCreator
;
import
com.fasterxml.jackson.annotation.JsonIgnore
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModelProperty
;
import
io.swagger.annotations.ApiModelProperty
;
import
java.util.ArrayList
;
import
java.util.ArrayList
;
...
@@ -13,51 +12,33 @@ import java.util.Map;
...
@@ -13,51 +12,33 @@ import java.util.Map;
import
org.springframework.validation.annotation.Validated
;
import
org.springframework.validation.annotation.Validated
;
import
javax.validation.Valid
;
import
javax.validation.Valid
;
import
javax.validation.constraints.*
;
import
javax.validation.constraints.*
;
import
org.springframework.data.annotation.Id
;
/**
/**
* NodeTemplate
* NodeTemplate
*/
*/
@Validated
@Validated
@javax
.
annotation
.
Generated
(
value
=
"io.swagger.codegen.languages.SpringCodegen"
,
date
=
"2019-11-01T1
3:58:45.661
Z"
)
@javax
.
annotation
.
Generated
(
value
=
"io.swagger.codegen.languages.SpringCodegen"
,
date
=
"2019-11-01T1
4:10:53.529
Z"
)
public
class
NodeTemplate
{
public
class
NodeTemplate
{
/**
* @return the id
*/
public
String
getId
()
{
return
id
;
}
/**
* @param id the id to set
*/
public
void
setId
(
String
id
)
{
this
.
id
=
id
;
}
@Id
@JsonIgnore
private
String
id
;
@JsonProperty
(
"derived_from"
)
@JsonProperty
(
"derived_from"
)
private
String
derivedFrom
=
null
;
private
String
derivedFrom
=
null
;
@JsonProperty
(
"properties"
)
@JsonProperty
(
"properties"
)
@Valid
@Valid
private
Map
<
String
,
Object
>
properties
=
null
;
private
Map
<
String
,
String
>
properties
=
null
;
@JsonProperty
(
"requirements"
)
@JsonProperty
(
"requirements"
)
@Valid
@Valid
private
List
<
Map
<
String
,
Object
>>
requirements
=
null
;
private
List
<
Map
<
String
,
String
>>
requirements
=
null
;
@JsonProperty
(
"interfaces"
)
@JsonProperty
(
"interfaces"
)
@Valid
@Valid
private
Map
<
String
,
Object
>
interfaces
=
null
;
private
Map
<
String
,
String
>
interfaces
=
null
;
@JsonProperty
(
"capabilities"
)
@JsonProperty
(
"capabilities"
)
@Valid
@Valid
private
Map
<
String
,
Object
>
capabilities
=
null
;
private
Map
<
String
,
String
>
capabilities
=
null
;
@JsonProperty
(
"type"
)
@JsonProperty
(
"type"
)
private
String
type
=
null
;
private
String
type
=
null
;
...
@@ -71,11 +52,11 @@ public class NodeTemplate {
...
@@ -71,11 +52,11 @@ public class NodeTemplate {
@JsonProperty
(
"attributes"
)
@JsonProperty
(
"attributes"
)
@Valid
@Valid
private
Map
<
String
,
Object
>
attributes
=
null
;
private
Map
<
String
,
String
>
attributes
=
null
;
@JsonProperty
(
"artifacts"
)
@JsonProperty
(
"artifacts"
)
@Valid
@Valid
private
Map
<
String
,
Object
>
artifacts
=
null
;
private
Map
<
String
,
String
>
artifacts
=
null
;
public
NodeTemplate
derivedFrom
(
String
derivedFrom
)
{
public
NodeTemplate
derivedFrom
(
String
derivedFrom
)
{
this
.
derivedFrom
=
derivedFrom
;
this
.
derivedFrom
=
derivedFrom
;
...
@@ -97,14 +78,14 @@ public class NodeTemplate {
...
@@ -97,14 +78,14 @@ public class NodeTemplate {
this
.
derivedFrom
=
derivedFrom
;
this
.
derivedFrom
=
derivedFrom
;
}
}
public
NodeTemplate
properties
(
Map
<
String
,
Object
>
properties
)
{
public
NodeTemplate
properties
(
Map
<
String
,
String
>
properties
)
{
this
.
properties
=
properties
;
this
.
properties
=
properties
;
return
this
;
return
this
;
}
}
public
NodeTemplate
putPropertiesItem
(
String
key
,
Object
propertiesItem
)
{
public
NodeTemplate
putPropertiesItem
(
String
key
,
String
propertiesItem
)
{
if
(
this
.
properties
==
null
)
{
if
(
this
.
properties
==
null
)
{
this
.
properties
=
new
HashMap
<
String
,
Object
>();
this
.
properties
=
new
HashMap
<
String
,
String
>();
}
}
this
.
properties
.
put
(
key
,
propertiesItem
);
this
.
properties
.
put
(
key
,
propertiesItem
);
return
this
;
return
this
;
...
@@ -117,22 +98,22 @@ public class NodeTemplate {
...
@@ -117,22 +98,22 @@ public class NodeTemplate {
@ApiModelProperty
(
value
=
""
)
@ApiModelProperty
(
value
=
""
)
public
Map
<
String
,
Object
>
getProperties
()
{
public
Map
<
String
,
String
>
getProperties
()
{
return
properties
;
return
properties
;
}
}
public
void
setProperties
(
Map
<
String
,
Object
>
properties
)
{
public
void
setProperties
(
Map
<
String
,
String
>
properties
)
{
this
.
properties
=
properties
;
this
.
properties
=
properties
;
}
}
public
NodeTemplate
requirements
(
List
<
Map
<
String
,
Object
>>
requirements
)
{
public
NodeTemplate
requirements
(
List
<
Map
<
String
,
String
>>
requirements
)
{
this
.
requirements
=
requirements
;
this
.
requirements
=
requirements
;
return
this
;
return
this
;
}
}
public
NodeTemplate
addRequirementsItem
(
Map
<
String
,
Object
>
requirementsItem
)
{
public
NodeTemplate
addRequirementsItem
(
Map
<
String
,
String
>
requirementsItem
)
{
if
(
this
.
requirements
==
null
)
{
if
(
this
.
requirements
==
null
)
{
this
.
requirements
=
new
ArrayList
<
Map
<
String
,
Object
>>();
this
.
requirements
=
new
ArrayList
<
Map
<
String
,
String
>>();
}
}
this
.
requirements
.
add
(
requirementsItem
);
this
.
requirements
.
add
(
requirementsItem
);
return
this
;
return
this
;
...
@@ -146,22 +127,22 @@ public class NodeTemplate {
...
@@ -146,22 +127,22 @@ public class NodeTemplate {
@Valid
@Valid
public
List
<
Map
<
String
,
Object
>>
getRequirements
()
{
public
List
<
Map
<
String
,
String
>>
getRequirements
()
{
return
requirements
;
return
requirements
;
}
}
public
void
setRequirements
(
List
<
Map
<
String
,
Object
>>
requirements
)
{
public
void
setRequirements
(
List
<
Map
<
String
,
String
>>
requirements
)
{
this
.
requirements
=
requirements
;
this
.
requirements
=
requirements
;
}
}
public
NodeTemplate
interfaces
(
Map
<
String
,
Object
>
interfaces
)
{
public
NodeTemplate
interfaces
(
Map
<
String
,
String
>
interfaces
)
{
this
.
interfaces
=
interfaces
;
this
.
interfaces
=
interfaces
;
return
this
;
return
this
;
}
}
public
NodeTemplate
putInterfacesItem
(
String
key
,
Object
interfacesItem
)
{
public
NodeTemplate
putInterfacesItem
(
String
key
,
String
interfacesItem
)
{
if
(
this
.
interfaces
==
null
)
{
if
(
this
.
interfaces
==
null
)
{
this
.
interfaces
=
new
HashMap
<
String
,
Object
>();
this
.
interfaces
=
new
HashMap
<
String
,
String
>();
}
}
this
.
interfaces
.
put
(
key
,
interfacesItem
);
this
.
interfaces
.
put
(
key
,
interfacesItem
);
return
this
;
return
this
;
...
@@ -174,22 +155,22 @@ public class NodeTemplate {
...
@@ -174,22 +155,22 @@ public class NodeTemplate {
@ApiModelProperty
(
value
=
""
)
@ApiModelProperty
(
value
=
""
)
public
Map
<
String
,
Object
>
getInterfaces
()
{
public
Map
<
String
,
String
>
getInterfaces
()
{
return
interfaces
;
return
interfaces
;
}
}
public
void
setInterfaces
(
Map
<
String
,
Object
>
interfaces
)
{
public
void
setInterfaces
(
Map
<
String
,
String
>
interfaces
)
{
this
.
interfaces
=
interfaces
;
this
.
interfaces
=
interfaces
;
}
}
public
NodeTemplate
capabilities
(
Map
<
String
,
Object
>
capabilities
)
{
public
NodeTemplate
capabilities
(
Map
<
String
,
String
>
capabilities
)
{
this
.
capabilities
=
capabilities
;
this
.
capabilities
=
capabilities
;
return
this
;
return
this
;
}
}
public
NodeTemplate
putCapabilitiesItem
(
String
key
,
Object
capabilitiesItem
)
{
public
NodeTemplate
putCapabilitiesItem
(
String
key
,
String
capabilitiesItem
)
{
if
(
this
.
capabilities
==
null
)
{
if
(
this
.
capabilities
==
null
)
{
this
.
capabilities
=
new
HashMap
<
String
,
Object
>();
this
.
capabilities
=
new
HashMap
<
String
,
String
>();
}
}
this
.
capabilities
.
put
(
key
,
capabilitiesItem
);
this
.
capabilities
.
put
(
key
,
capabilitiesItem
);
return
this
;
return
this
;
...
@@ -202,11 +183,11 @@ public class NodeTemplate {
...
@@ -202,11 +183,11 @@ public class NodeTemplate {
@ApiModelProperty
(
value
=
""
)
@ApiModelProperty
(
value
=
""
)
public
Map
<
String
,
Object
>
getCapabilities
()
{
public
Map
<
String
,
String
>
getCapabilities
()
{
return
capabilities
;
return
capabilities
;
}
}
public
void
setCapabilities
(
Map
<
String
,
Object
>
capabilities
)
{
public
void
setCapabilities
(
Map
<
String
,
String
>
capabilities
)
{
this
.
capabilities
=
capabilities
;
this
.
capabilities
=
capabilities
;
}
}
...
@@ -278,14 +259,14 @@ public class NodeTemplate {
...
@@ -278,14 +259,14 @@ public class NodeTemplate {
this
.
directives
=
directives
;
this
.
directives
=
directives
;
}
}
public
NodeTemplate
attributes
(
Map
<
String
,
Object
>
attributes
)
{
public
NodeTemplate
attributes
(
Map
<
String
,
String
>
attributes
)
{
this
.
attributes
=
attributes
;
this
.
attributes
=
attributes
;
return
this
;
return
this
;
}
}
public
NodeTemplate
putAttributesItem
(
String
key
,
Object
attributesItem
)
{
public
NodeTemplate
putAttributesItem
(
String
key
,
String
attributesItem
)
{
if
(
this
.
attributes
==
null
)
{
if
(
this
.
attributes
==
null
)
{
this
.
attributes
=
new
HashMap
<
String
,
Object
>();
this
.
attributes
=
new
HashMap
<
String
,
String
>();
}
}
this
.
attributes
.
put
(
key
,
attributesItem
);
this
.
attributes
.
put
(
key
,
attributesItem
);
return
this
;
return
this
;
...
@@ -298,22 +279,22 @@ public class NodeTemplate {
...
@@ -298,22 +279,22 @@ public class NodeTemplate {
@ApiModelProperty
(
value
=
""
)
@ApiModelProperty
(
value
=
""
)
public
Map
<
String
,
Object
>
getAttributes
()
{
public
Map
<
String
,
String
>
getAttributes
()
{
return
attributes
;
return
attributes
;
}
}
public
void
setAttributes
(
Map
<
String
,
Object
>
attributes
)
{
public
void
setAttributes
(
Map
<
String
,
String
>
attributes
)
{
this
.
attributes
=
attributes
;
this
.
attributes
=
attributes
;
}
}
public
NodeTemplate
artifacts
(
Map
<
String
,
Object
>
artifacts
)
{
public
NodeTemplate
artifacts
(
Map
<
String
,
String
>
artifacts
)
{
this
.
artifacts
=
artifacts
;
this
.
artifacts
=
artifacts
;
return
this
;
return
this
;
}
}
public
NodeTemplate
putArtifactsItem
(
String
key
,
Object
artifactsItem
)
{
public
NodeTemplate
putArtifactsItem
(
String
key
,
String
artifactsItem
)
{
if
(
this
.
artifacts
==
null
)
{
if
(
this
.
artifacts
==
null
)
{
this
.
artifacts
=
new
HashMap
<
String
,
Object
>();
this
.
artifacts
=
new
HashMap
<
String
,
String
>();
}
}
this
.
artifacts
.
put
(
key
,
artifactsItem
);
this
.
artifacts
.
put
(
key
,
artifactsItem
);
return
this
;
return
this
;
...
@@ -326,11 +307,11 @@ public class NodeTemplate {
...
@@ -326,11 +307,11 @@ public class NodeTemplate {
@ApiModelProperty
(
value
=
""
)
@ApiModelProperty
(
value
=
""
)
public
Map
<
String
,
Object
>
getArtifacts
()
{
public
Map
<
String
,
String
>
getArtifacts
()
{
return
artifacts
;
return
artifacts
;
}
}
public
void
setArtifacts
(
Map
<
String
,
Object
>
artifacts
)
{
public
void
setArtifacts
(
Map
<
String
,
String
>
artifacts
)
{
this
.
artifacts
=
artifacts
;
this
.
artifacts
=
artifacts
;
}
}
...
...
drip-commons/src/main/java/nl/uva/sne/drip/model/TopologyTemplate.java
View file @
5dbca3ef
...
@@ -2,9 +2,6 @@ package nl.uva.sne.drip.model;
...
@@ -2,9 +2,6 @@ package nl.uva.sne.drip.model;
import
java.util.Objects
;
import
java.util.Objects
;
import
com.fasterxml.jackson.annotation.JsonProperty
;
import
com.fasterxml.jackson.annotation.JsonProperty
;
import
com.fasterxml.jackson.annotation.JsonCreator
;
import
com.fasterxml.jackson.annotation.JsonIgnore
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModelProperty
;
import
io.swagger.annotations.ApiModelProperty
;
import
java.util.ArrayList
;
import
java.util.ArrayList
;
import
java.util.HashMap
;
import
java.util.HashMap
;
...
@@ -12,39 +9,20 @@ import java.util.List;
...
@@ -12,39 +9,20 @@ import java.util.List;
import
java.util.Map
;
import
java.util.Map
;
import
org.springframework.validation.annotation.Validated
;
import
org.springframework.validation.annotation.Validated
;
import
javax.validation.Valid
;
import
javax.validation.Valid
;
import
javax.validation.constraints.*
;
import
org.springframework.data.annotation.Id
;
/**
/**
* TopologyTemplate
* TopologyTemplate
*/
*/
@Validated
@Validated
@javax
.
annotation
.
Generated
(
value
=
"io.swagger.codegen.languages.SpringCodegen"
,
date
=
"2019-11-01T1
3:58:45.661
Z"
)
@javax
.
annotation
.
Generated
(
value
=
"io.swagger.codegen.languages.SpringCodegen"
,
date
=
"2019-11-01T1
4:10:53.529
Z"
)
public
class
TopologyTemplate
{
public
class
TopologyTemplate
{
/**
* @return the id
*/
public
String
getId
()
{
return
id
;
}
/**
* @param id the id to set
*/
public
void
setId
(
String
id
)
{
this
.
id
=
id
;
}
@Id
@JsonIgnore
private
String
id
;
@JsonProperty
(
"description"
)
@JsonProperty
(
"description"
)
private
String
description
=
null
;
private
String
description
=
null
;
@JsonProperty
(
"inputs"
)
@JsonProperty
(
"inputs"
)
private
String
inputs
=
null
;
@Valid
private
Map
<
String
,
String
>
inputs
=
null
;
@JsonProperty
(
"node_templates"
)
@JsonProperty
(
"node_templates"
)
@Valid
@Valid
...
@@ -52,20 +30,23 @@ public class TopologyTemplate {
...
@@ -52,20 +30,23 @@ public class TopologyTemplate {
@JsonProperty
(
"relationship_templates"
)
@JsonProperty
(
"relationship_templates"
)
@Valid
@Valid
private
Map
<
String
,
Object
>
relationshipTemplates
=
null
;
private
Map
<
String
,
String
>
relationshipTemplates
=
null
;
@JsonProperty
(
"outputs"
)
@JsonProperty
(
"outputs"
)
private
String
outputs
=
null
;
@Valid
private
Map
<
String
,
String
>
outputs
=
null
;
@JsonProperty
(
"groups"
)
@JsonProperty
(
"groups"
)
private
String
groups
=
null
;
@Valid
private
Map
<
String
,
String
>
groups
=
null
;
@JsonProperty
(
"substitution_mappings"
)
@JsonProperty
(
"substitution_mappings"
)
private
String
substitutionMappings
=
null
;
@Valid
private
Map
<
String
,
String
>
substitutionMappings
=
null
;
@JsonProperty
(
"policies"
)
@JsonProperty
(
"policies"
)
@Valid
@Valid
private
List
<
String
>
policies
=
null
;
private
List
<
Map
<
String
,
String
>
>
policies
=
null
;
public
TopologyTemplate
description
(
String
description
)
{
public
TopologyTemplate
description
(
String
description
)
{
this
.
description
=
description
;
this
.
description
=
description
;
...
@@ -87,11 +68,19 @@ public class TopologyTemplate {
...
@@ -87,11 +68,19 @@ public class TopologyTemplate {
this
.
description
=
description
;
this
.
description
=
description
;
}
}
public
TopologyTemplate
inputs
(
String
inputs
)
{
public
TopologyTemplate
inputs
(
Map
<
String
,
String
>
inputs
)
{
this
.
inputs
=
inputs
;
this
.
inputs
=
inputs
;
return
this
;
return
this
;
}
}
public
TopologyTemplate
putInputsItem
(
String
key
,
String
inputsItem
)
{
if
(
this
.
inputs
==
null
)
{
this
.
inputs
=
new
HashMap
<
String
,
String
>();
}
this
.
inputs
.
put
(
key
,
inputsItem
);
return
this
;
}
/**
/**
* Get inputs
* Get inputs
* @return inputs
* @return inputs
...
@@ -99,11 +88,11 @@ public class TopologyTemplate {
...
@@ -99,11 +88,11 @@ public class TopologyTemplate {
@ApiModelProperty
(
value
=
""
)
@ApiModelProperty
(
value
=
""
)
public
String
getInputs
()
{
public
Map
<
String
,
String
>
getInputs
()
{
return
inputs
;
return
inputs
;
}
}
public
void
setInputs
(
String
inputs
)
{
public
void
setInputs
(
Map
<
String
,
String
>
inputs
)
{
this
.
inputs
=
inputs
;
this
.
inputs
=
inputs
;
}
}
...
@@ -136,14 +125,14 @@ public class TopologyTemplate {
...
@@ -136,14 +125,14 @@ public class TopologyTemplate {
this
.
nodeTemplates
=
nodeTemplates
;
this
.
nodeTemplates
=
nodeTemplates
;
}
}
public
TopologyTemplate
relationshipTemplates
(
Map
<
String
,
Object
>
relationshipTemplates
)
{
public
TopologyTemplate
relationshipTemplates
(
Map
<
String
,
String
>
relationshipTemplates
)
{
this
.
relationshipTemplates
=
relationshipTemplates
;
this
.
relationshipTemplates
=
relationshipTemplates
;
return
this
;
return
this
;
}
}
public
TopologyTemplate
putRelationshipTemplatesItem
(
String
key
,
Object
relationshipTemplatesItem
)
{
public
TopologyTemplate
putRelationshipTemplatesItem
(
String
key
,
String
relationshipTemplatesItem
)
{
if
(
this
.
relationshipTemplates
==
null
)
{
if
(
this
.
relationshipTemplates
==
null
)
{
this
.
relationshipTemplates
=
new
HashMap
<
String
,
Object
>();
this
.
relationshipTemplates
=
new
HashMap
<
String
,
String
>();
}
}
this
.
relationshipTemplates
.
put
(
key
,
relationshipTemplatesItem
);
this
.
relationshipTemplates
.
put
(
key
,
relationshipTemplatesItem
);
return
this
;
return
this
;
...
@@ -156,19 +145,27 @@ public class TopologyTemplate {
...
@@ -156,19 +145,27 @@ public class TopologyTemplate {
@ApiModelProperty
(
value
=
""
)
@ApiModelProperty
(
value
=
""
)
public
Map
<
String
,
Object
>
getRelationshipTemplates
()
{
public
Map
<
String
,
String
>
getRelationshipTemplates
()
{
return
relationshipTemplates
;
return
relationshipTemplates
;
}
}
public
void
setRelationshipTemplates
(
Map
<
String
,
Object
>
relationshipTemplates
)
{
public
void
setRelationshipTemplates
(
Map
<
String
,
String
>
relationshipTemplates
)
{
this
.
relationshipTemplates
=
relationshipTemplates
;
this
.
relationshipTemplates
=
relationshipTemplates
;
}
}
public
TopologyTemplate
outputs
(
String
outputs
)
{
public
TopologyTemplate
outputs
(
Map
<
String
,
String
>
outputs
)
{
this
.
outputs
=
outputs
;
this
.
outputs
=
outputs
;
return
this
;
return
this
;
}
}
public
TopologyTemplate
putOutputsItem
(
String
key
,
String
outputsItem
)
{
if
(
this
.
outputs
==
null
)
{
this
.
outputs
=
new
HashMap
<
String
,
String
>();
}
this
.
outputs
.
put
(
key
,
outputsItem
);
return
this
;
}
/**
/**
* Get outputs
* Get outputs
* @return outputs
* @return outputs
...
@@ -176,19 +173,27 @@ public class TopologyTemplate {
...
@@ -176,19 +173,27 @@ public class TopologyTemplate {
@ApiModelProperty
(
value
=
""
)
@ApiModelProperty
(
value
=
""
)
public
String
getOutputs
()
{
public
Map
<
String
,
String
>
getOutputs
()
{
return
outputs
;
return
outputs
;
}
}
public
void
setOutputs
(
String
outputs
)
{
public
void
setOutputs
(
Map
<
String
,
String
>
outputs
)
{
this
.
outputs
=
outputs
;
this
.
outputs
=
outputs
;
}
}
public
TopologyTemplate
groups
(
String
groups
)
{
public
TopologyTemplate
groups
(
Map
<
String
,
String
>
groups
)
{
this
.
groups
=
groups
;
this
.
groups
=
groups
;
return
this
;
return
this
;
}
}
public
TopologyTemplate
putGroupsItem
(
String
key
,
String
groupsItem
)
{
if
(
this
.
groups
==
null
)
{
this
.
groups
=
new
HashMap
<
String
,
String
>();
}
this
.
groups
.
put
(
key
,
groupsItem
);
return
this
;
}
/**
/**
* Get groups
* Get groups
* @return groups
* @return groups
...
@@ -196,19 +201,27 @@ public class TopologyTemplate {
...
@@ -196,19 +201,27 @@ public class TopologyTemplate {
@ApiModelProperty
(
value
=
""
)
@ApiModelProperty
(
value
=
""
)
public
String
getGroups
()
{
public
Map
<
String
,
String
>
getGroups
()
{
return
groups
;
return
groups
;
}
}
public
void
setGroups
(
String
groups
)
{
public
void
setGroups
(
Map
<
String
,
String
>
groups
)
{
this
.
groups
=
groups
;
this
.
groups
=
groups
;
}
}
public
TopologyTemplate
substitutionMappings
(
String
substitutionMappings
)
{
public
TopologyTemplate
substitutionMappings
(
Map
<
String
,
String
>
substitutionMappings
)
{
this
.
substitutionMappings
=
substitutionMappings
;
this
.
substitutionMappings
=
substitutionMappings
;
return
this
;
return
this
;
}
}
public
TopologyTemplate
putSubstitutionMappingsItem
(
String
key
,
String
substitutionMappingsItem
)
{
if
(
this
.
substitutionMappings
==
null
)
{
this
.
substitutionMappings
=
new
HashMap
<
String
,
String
>();
}
this
.
substitutionMappings
.
put
(
key
,
substitutionMappingsItem
);
return
this
;
}
/**
/**
* Get substitutionMappings
* Get substitutionMappings
* @return substitutionMappings
* @return substitutionMappings
...
@@ -216,22 +229,22 @@ public class TopologyTemplate {
...
@@ -216,22 +229,22 @@ public class TopologyTemplate {
@ApiModelProperty
(
value
=
""
)
@ApiModelProperty
(
value
=
""
)
public
String
getSubstitutionMappings
()
{
public
Map
<
String
,
String
>
getSubstitutionMappings
()
{
return
substitutionMappings
;
return
substitutionMappings
;
}
}
public
void
setSubstitutionMappings
(
String
substitutionMappings
)
{
public
void
setSubstitutionMappings
(
Map
<
String
,
String
>
substitutionMappings
)
{
this
.
substitutionMappings
=
substitutionMappings
;
this
.
substitutionMappings
=
substitutionMappings
;
}
}
public
TopologyTemplate
policies
(
List
<
String
>
policies
)
{
public
TopologyTemplate
policies
(
List
<
Map
<
String
,
String
>
>
policies
)
{
this
.
policies
=
policies
;
this
.
policies
=
policies
;
return
this
;
return
this
;
}
}
public
TopologyTemplate
addPoliciesItem
(
String
policiesItem
)
{
public
TopologyTemplate
addPoliciesItem
(
Map
<
String
,
String
>
policiesItem
)
{
if
(
this
.
policies
==
null
)
{
if
(
this
.
policies
==
null
)
{
this
.
policies
=
new
ArrayList
<
String
>();
this
.
policies
=
new
ArrayList
<
Map
<
String
,
String
>
>();
}
}
this
.
policies
.
add
(
policiesItem
);
this
.
policies
.
add
(
policiesItem
);
return
this
;
return
this
;
...
@@ -243,12 +256,13 @@ public class TopologyTemplate {
...
@@ -243,12 +256,13 @@ public class TopologyTemplate {
**/
**/
@ApiModelProperty
(
value
=
""
)
@ApiModelProperty
(
value
=
""
)
@Valid
public
List
<
String
>
getPolicies
()
{
public
List
<
Map
<
String
,
String
>
>
getPolicies
()
{
return
policies
;
return
policies
;
}
}
public
void
setPolicies
(
List
<
String
>
policies
)
{
public
void
setPolicies
(
List
<
Map
<
String
,
String
>
>
policies
)
{
this
.
policies
=
policies
;
this
.
policies
=
policies
;
}
}
...
...
drip-commons/src/main/java/nl/uva/sne/drip/model/ToscaTemplate.java
View file @
5dbca3ef
This diff is collapsed.
Click to expand it.
drip-commons/src/main/java/nl/uva/sne/drip/model/User.java
View file @
5dbca3ef
package
nl
.
uva
.
sne
.
drip
.
model
;
package
nl
.
uva
.
sne
.
drip
.
model
;
import
com.fasterxml.jackson.annotation.JsonIgnore
;
import
java.util.Objects
;
import
java.util.Objects
;
import
org.springframework.validation.annotation.Validated
;
import
org.springframework.validation.annotation.Validated
;
import
javax.validation.Valid
;
import
javax.validation.Valid
;
import
javax.validation.constraints.*
;
import
javax.validation.constraints.*
;
import
org.springframework.data.annotation.Id
;
/**
/**
* User
* User
*/
*/
@Validated
@Validated
@javax
.
annotation
.
Generated
(
value
=
"io.swagger.codegen.languages.SpringCodegen"
,
date
=
"2019-11-01T1
3:58:45.661
Z"
)
@javax
.
annotation
.
Generated
(
value
=
"io.swagger.codegen.languages.SpringCodegen"
,
date
=
"2019-11-01T1
4:10:53.529
Z"
)
public
class
User
{
public
class
User
{
/**
* @return the id
*/
public
String
getId
()
{
return
id
;
}
/**
* @param id the id to set
*/
public
void
setId
(
String
id
)
{
this
.
id
=
id
;
}
@Id
@JsonIgnore
private
String
id
;
@Override
@Override
public
boolean
equals
(
java
.
lang
.
Object
o
)
{
public
boolean
equals
(
java
.
lang
.
Object
o
)
{
...
...
drip-manager/src/main/java/nl/uva/sne/drip/service/ProvisionerService.java
View file @
5dbca3ef
...
@@ -5,6 +5,7 @@
...
@@ -5,6 +5,7 @@
*/
*/
package
nl
.
uva
.
sne
.
drip
.
service
;
package
nl
.
uva
.
sne
.
drip
.
service
;
import
com.fasterxml.jackson.core.JsonProcessingException
;
import
java.io.IOException
;
import
java.io.IOException
;
import
java.util.HashMap
;
import
java.util.HashMap
;
import
java.util.List
;
import
java.util.List
;
...
@@ -12,6 +13,7 @@ import java.util.Map;
...
@@ -12,6 +13,7 @@ import java.util.Map;
import
java.util.concurrent.TimeoutException
;
import
java.util.concurrent.TimeoutException
;
import
java.util.logging.Level
;
import
java.util.logging.Level
;
import
java.util.logging.Logger
;
import
java.util.logging.Logger
;
import
nl.uva.sne.drip.commons.sure_tosca.client.ApiException
;
import
nl.uva.sne.drip.commons.utils.ToscaHelper
;
import
nl.uva.sne.drip.commons.utils.ToscaHelper
;
import
nl.uva.sne.drip.model.Message
;
import
nl.uva.sne.drip.model.Message
;
import
nl.uva.sne.drip.model.NodeTemplate
;
import
nl.uva.sne.drip.model.NodeTemplate
;
...
@@ -40,7 +42,7 @@ public class ProvisionerService {
...
@@ -40,7 +42,7 @@ public class ProvisionerService {
ToscaHelper
toscaHelper
;
ToscaHelper
toscaHelper
;
private
Integer
toscaHelperID
;
private
Integer
toscaHelperID
;
public
String
provision
(
String
id
)
throws
IOException
{
public
String
provision
(
String
id
)
throws
IOException
,
JsonProcessingException
,
ApiException
{
String
ymlToscaTemplate
=
toscaTemplateService
.
findByID
(
id
);
String
ymlToscaTemplate
=
toscaTemplateService
.
findByID
(
id
);
ToscaTemplate
toscaTemplate
=
toscaTemplateService
.
getYaml2ToscaTemplate
(
ymlToscaTemplate
);
ToscaTemplate
toscaTemplate
=
toscaTemplateService
.
getYaml2ToscaTemplate
(
ymlToscaTemplate
);
...
@@ -48,7 +50,7 @@ public class ProvisionerService {
...
@@ -48,7 +50,7 @@ public class ProvisionerService {
toscaTemplate
=
addProvisionInterface
(
toscaTemplate
);
toscaTemplate
=
addProvisionInterface
(
toscaTemplate
);
return
null
;
return
toscaTemplateService
.
save
(
toscaTemplate
)
;
}
}
// private List<Map<String, NodeTemplate>> getVmTopologies(ToscaTemplate toscaTemplate) {
// private List<Map<String, NodeTemplate>> getVmTopologies(ToscaTemplate toscaTemplate) {
...
...
openAPI/TOSCA/NodeTemplate.yml
View file @
5dbca3ef
...
@@ -6,21 +6,21 @@
...
@@ -6,21 +6,21 @@
properties
:
properties
:
type
:
object
type
:
object
additionalProperties
:
additionalProperties
:
type
:
string
type
:
object
requirements
:
requirements
:
type
:
"
array"
type
:
"
array"
items
:
items
:
type
:
object
type
:
object
additionalProperties
:
additionalProperties
:
type
:
string
type
:
object
interfaces
:
interfaces
:
type
:
object
type
:
object
additionalProperties
:
additionalProperties
:
type
:
string
type
:
object
capabilities
:
capabilities
:
type
:
object
type
:
object
additionalProperties
:
additionalProperties
:
type
:
string
type
:
object
type
:
type
:
type
:
"
string"
type
:
"
string"
description
:
description
:
...
@@ -32,11 +32,11 @@
...
@@ -32,11 +32,11 @@
attributes
:
attributes
:
type
:
object
type
:
object
additionalProperties
:
additionalProperties
:
type
:
string
type
:
object
artifacts
:
artifacts
:
type
:
object
type
:
object
additionalProperties
:
additionalProperties
:
type
:
string
type
:
object
...
...
openAPI/TOSCA/TopologyTemplate.yml
View file @
5dbca3ef
...
@@ -14,22 +14,22 @@
...
@@ -14,22 +14,22 @@
relationship_templates
:
relationship_templates
:
type
:
object
type
:
object
additionalProperties
:
additionalProperties
:
type
:
string
type
:
object
outputs
:
outputs
:
type
:
object
type
:
object
additionalProperties
:
additionalProperties
:
type
:
string
type
:
object
groups
:
groups
:
type
:
object
type
:
object
additionalProperties
:
additionalProperties
:
type
:
string
type
:
object
substitution_mappings
:
substitution_mappings
:
type
:
object
type
:
object
additionalProperties
:
additionalProperties
:
type
:
string
type
:
object
policies
:
policies
:
type
:
"
array"
type
:
"
array"
items
:
items
:
type
:
object
type
:
object
additionalProperties
:
additionalProperties
:
type
:
string
type
:
object
openAPI/TOSCA/ToscaTemplate.yml
View file @
5dbca3ef
...
@@ -20,49 +20,49 @@
...
@@ -20,49 +20,49 @@
items
:
items
:
type
:
object
type
:
object
additionalProperties
:
additionalProperties
:
type
:
string
type
:
object
dsl_definitions
:
dsl_definitions
:
type
:
object
type
:
object
additionalProperties
:
additionalProperties
:
type
:
string
type
:
object
node_types
:
node_types
:
type
:
object
type
:
object
additionalProperties
:
additionalProperties
:
type
:
string
type
:
object
relationship_types
:
relationship_types
:
type
:
object
type
:
object
additionalProperties
:
additionalProperties
:
type
:
string
type
:
object
relationship_templates
:
relationship_templates
:
type
:
object
type
:
object
additionalProperties
:
additionalProperties
:
type
:
string
type
:
object
capability_types
:
capability_types
:
type
:
object
type
:
object
additionalProperties
:
additionalProperties
:
type
:
string
type
:
object
artifact_types
:
artifact_types
:
type
:
object
type
:
object
additionalProperties
:
additionalProperties
:
type
:
string
type
:
object
data_types
:
data_types
:
type
:
object
type
:
object
additionalProperties
:
additionalProperties
:
type
:
string
type
:
object
interface_types
:
interface_types
:
type
:
object
type
:
object
additionalProperties
:
additionalProperties
:
type
:
string
type
:
object
policy_types
:
policy_types
:
type
:
object
type
:
object
additionalProperties
:
additionalProperties
:
type
:
string
type
:
object
group_types
:
group_types
:
type
:
object
type
:
object
additionalProperties
:
additionalProperties
:
type
:
string
type
:
object
repositories
:
repositories
:
type
:
object
type
:
object
additionalProperties
:
additionalProperties
:
type
:
string
type
:
object
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment