Class SloProvider
- java.lang.Object
-
- org.palladiosimulator.measurementsui.dataprovider.SloProvider
-
public class SloProvider extends Object
Provides and saves temporary Service Level Objective data. Is used by the SloWizardmodel in order to provide data for the SloWizard pages.
-
-
Constructor Summary
Constructors Constructor Description SloProvider()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDescription()static SloProvidergetInstance()Get the instance of DataApplicationorg.palladiosimulator.servicelevelobjective.ThresholdgetLowerThreshold()org.palladiosimulator.monitorrepository.MeasurementSpecificationgetMeasurementSpecification()StringgetName()org.palladiosimulator.servicelevelobjective.ServiceLevelObjectivegetServiceLevelObjective()org.palladiosimulator.servicelevelobjective.ThresholdgetUpperThreshols()voidsetDescription(String description)voidsetLowerThreshold(org.palladiosimulator.servicelevelobjective.Threshold lowerThreshold)voidsetMeasurementSpecification(org.palladiosimulator.monitorrepository.MeasurementSpecification measurementSpecification)voidsetName(String name)voidsetServiceLevelObjective(org.palladiosimulator.servicelevelobjective.ServiceLevelObjective serviceLevelObjective)voidsetUpperThreshols(org.palladiosimulator.servicelevelobjective.Threshold upperThreshols)
-
-
-
Method Detail
-
getInstance
public static SloProvider getInstance()
Get the instance of DataApplication- Returns:
- instance of DataApplication
-
getName
public String getName()
- Returns:
- the name
-
setName
public void setName(String name)
- Parameters:
name- the name to set
-
getDescription
public String getDescription()
- Returns:
- the description
-
setDescription
public void setDescription(String description)
- Parameters:
description- the description to set
-
getMeasurementSpecification
public org.palladiosimulator.monitorrepository.MeasurementSpecification getMeasurementSpecification()
- Returns:
- the measurementSpecification
-
setMeasurementSpecification
public void setMeasurementSpecification(org.palladiosimulator.monitorrepository.MeasurementSpecification measurementSpecification)
- Parameters:
measurementSpecification- the measurementSpecification to set
-
getServiceLevelObjective
public org.palladiosimulator.servicelevelobjective.ServiceLevelObjective getServiceLevelObjective()
- Returns:
- the serviceLevelObjective
-
setServiceLevelObjective
public void setServiceLevelObjective(org.palladiosimulator.servicelevelobjective.ServiceLevelObjective serviceLevelObjective)
- Parameters:
serviceLevelObjective- the serviceLevelObjective to set
-
getLowerThreshold
public org.palladiosimulator.servicelevelobjective.Threshold getLowerThreshold()
- Returns:
- the lowerThreshold
-
setLowerThreshold
public void setLowerThreshold(org.palladiosimulator.servicelevelobjective.Threshold lowerThreshold)
- Parameters:
lowerThreshold- the lowerThreshold to set
-
getUpperThreshols
public org.palladiosimulator.servicelevelobjective.Threshold getUpperThreshols()
- Returns:
- the upperThreshols
-
setUpperThreshols
public void setUpperThreshols(org.palladiosimulator.servicelevelobjective.Threshold upperThreshols)
- Parameters:
upperThreshols- the upperThreshols to set
-
-