Class InfrastructureSignatureCreator
- java.lang.Object
-
- org.palladiosimulator.generator.fluent.shared.structure.Entity
-
- org.palladiosimulator.generator.fluent.repository.structure.RepositoryEntity
-
- org.palladiosimulator.generator.fluent.repository.structure.interfaces.InfrastructureSignatureCreator
-
public class InfrastructureSignatureCreator extends RepositoryEntity
This class constructs aInfrastructureSignature. It is used to create the 'InfrastructureSignature' object step-by-step, i.e. 'InfrastructureSignatureCreator' objects are of intermediate state.- See Also:
InfrastructureSignature
-
-
Field Summary
-
Fields inherited from class org.palladiosimulator.generator.fluent.repository.structure.RepositoryEntity
repository
-
-
Constructor Summary
Constructors Constructor Description InfrastructureSignatureCreator(RepositoryCreator repository)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected org.palladiosimulator.pcm.repository.InfrastructureSignaturebuild()Turns the entity in the making into the finished entity.InfrastructureSignatureCreatorwithExceptionType(org.palladiosimulator.pcm.repository.ExceptionType exceptionType)Adds theexceptionTypeto the signature's list of possible org.palladiosimulator.generator.fluent.exceptions.InfrastructureSignatureCreatorwithFailureType(Failure failureType)Adds thefailureTypeto the signature's list of possible failures.InfrastructureSignatureCreatorwithFailureType(org.palladiosimulator.pcm.reliability.FailureType failureType)Adds thefailureTypeto the signature's list of possible failures.InfrastructureSignatureCreatorwithName(String name)Defines the unique name of this current entity.InfrastructureSignatureCreatorwithParameter(String name, Primitive dataType, org.palladiosimulator.pcm.repository.ParameterModifier modifier)Creates aParameterand adds it to the signature's ordered list of parameters.InfrastructureSignatureCreatorwithParameter(String name, org.palladiosimulator.pcm.repository.DataType dataType, org.palladiosimulator.pcm.repository.ParameterModifier modifier)Creates aParameterand adds it to the signature's ordered list of parameters.
-
-
-
Constructor Detail
-
InfrastructureSignatureCreator
public InfrastructureSignatureCreator(RepositoryCreator repository)
-
-
Method Detail
-
withName
public InfrastructureSignatureCreator withName(String name)
Description copied from class:EntityDefines the unique name of this current entity. Once created entities are referenced by this name. Only entities with a unique name can be fetched from the model.
-
withParameter
public InfrastructureSignatureCreator withParameter(String name, Primitive dataType, org.palladiosimulator.pcm.repository.ParameterModifier modifier)
Creates aParameterand adds it to the signature's ordered list of parameters.Each parameter is a tuple of a
nameand adataType(which is unique across the parameters). Optionally, themodifiers 'in', 'out', and 'inout' (with its OMG IDL semantics) can be used for parameters, e.g.ParameterModifier.IN.A
Primitivedata type can have the values 'boolean', 'integer', 'string', 'double', 'long', 'char', 'byte'.- Parameters:
name-dataType-modifier- may be null- Returns:
- this infrastructure signature in the making
- See Also:
ParameterModifier
-
withParameter
public InfrastructureSignatureCreator withParameter(String name, org.palladiosimulator.pcm.repository.DataType dataType, org.palladiosimulator.pcm.repository.ParameterModifier modifier)
Creates aParameterand adds it to the signature's ordered list of parameters.Each parameter is a tuple of a
nameand adataType(which is unique across the parameters). Optionally, themodifiers 'in', 'out', and 'inout' (with its OMG IDL semantics) can be used for parameters, e.g.ParameterModifier.IN.An existing data type can be fetched from the repository using the org.palladiosimulator.generator.fluent.component.factory, i.e.
create.fetchOfDataType(name).- Parameters:
name-dataType-modifier- may be null- Returns:
- this infrastructure signature in the making
- See Also:
FluentRepositoryFactory.fetchOfDataType(String),ParameterModifier
-
withFailureType
public InfrastructureSignatureCreator withFailureType(org.palladiosimulator.pcm.reliability.FailureType failureType)
Adds thefailureTypeto the signature's list of possible failures.Failure types can be fetched from the repository using the org.palladiosimulator.generator.fluent.component.factory, i.e.
create.fetchOfFailureType(name).- Parameters:
failureType-- Returns:
- this infrastructure signature in the making
- See Also:
FluentRepositoryFactory.fetchOfFailureType(String)
-
withFailureType
public InfrastructureSignatureCreator withFailureType(Failure failureType)
Adds thefailureTypeto the signature's list of possible failures.A
Failuretype can have the values 'HARDWARE_CPU', 'HARDWARE_HDD', 'HARDWARE_DELAY', 'NETWORK_LAN', 'SOFTWARE'.- Parameters:
failureType-- Returns:
- this infrastructure signature in the making
-
withExceptionType
public InfrastructureSignatureCreator withExceptionType(org.palladiosimulator.pcm.repository.ExceptionType exceptionType)
Adds theexceptionTypeto the signature's list of possible org.palladiosimulator.generator.fluent.exceptions.An existing exception type can be fetched from the repository using the org.palladiosimulator.generator.fluent.component.factory, i.e.
create.fetchOfExceptionType(name).- Parameters:
exceptionType-- Returns:
- this infrastructure signature in the making
- See Also:
FluentRepositoryFactory.fetchOfExceptionType(String)
-
-