use of org.alien4cloud.tosca.model.templates.HaPolicy in project alien4cloud by alien4cloud.
the class GroupPolicyParser method buildPolicy.
private AbstractPolicy buildPolicy(Map<String, Object> nodeMap, Node node, ParsingContextExecution context) {
String type = (String) nodeMap.get(TYPE);
AbstractPolicy result = null;
if (type != null) {
switch(type) {
case HaPolicy.HA_POLICY:
result = new HaPolicy(nodeMap);
break;
case LocationPlacementPolicy.LOCATION_PLACEMENT_POLICY:
Object locationO = nodeMap.get(LocationPlacementPolicy.LOCATION_ID_PROPERTY);
if (locationO instanceof String) {
result = new LocationPlacementPolicy();
} else {
context.getParsingErrors().add(new ParsingError(ParsingErrorLevel.ERROR, ErrorCode.SYNTAX_ERROR, null, node.getStartMark(), "Location id should be a string.", node.getEndMark(), locationO.toString()));
return null;
}
break;
}
}
if (result == null) {
result = new GenericPolicy(nodeMap);
}
return result;
}
Aggregations