Uses of Class
com.easy_model.webservice.model.KeyParam
Packages that use KeyParam
-
Uses of KeyParam in com.easy_model.webservice.model
Methods in com.easy_model.webservice.model that return KeyParamModifier and TypeMethodDescriptionModelData.keyParam()Returns the value of thekeyParamrecord component.Methods in com.easy_model.webservice.model with parameters of type KeyParamModifier and TypeMethodDescriptionvoidKeyParam.copyFromExisting(KeyParam keyParam, Model model) org.springframework.http.ResponseEntity<String> ModelController.updateKeyParam(Model model, @Valid KeyParam keyParam, Principal principal) Constructors in com.easy_model.webservice.model with parameters of type KeyParamModifierConstructorDescriptionModelData(Long id, @NotEmpty @NotNull String name, @NotNull @Min(value=0L,message="Start year must be greater than 0") Integer startYear, @NotNull @Min(value=0L,message="Number of historical periods can\'t be less than 0") @Max(value=5L,message="You can only have 5 years of historical periods") Integer nbHistoricalPeriod, @NotNull @Min(value=1L,message="You need at least one projection period") @Max(value=21L,message="You can only have 20 years of projection periods") Integer nbProjectionPeriod, @NotNull String company, String companyNumber, @NotNull @Size(min=1,max=5,message="Currency must be a string between 1 to 5 characters") String currency, @Pattern(regexp="property|template|") String simpleModel, boolean locked, boolean includeYTD, KeyParam keyParam) Creates an instance of aModelDatarecord class.