Class Problem
- java.lang.Object
-
- de.trustable.ca3s.adcs.proxy.service.api.dto.Problem
-
@Generated(value="org.openapitools.codegen.languages.SpringCodegen", date="2022-10-13T20:32:01.566090+02:00[Europe/Berlin]") public class Problem extends ObjectProblem
-
-
Constructor Summary
Constructors Constructor Description Problem()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Problemdetail(String detail)booleanequals(Object o)StringgetDetail()A human readable explanation specific to this occurrence of the problem.@Valid URIgetInstance()An absolute URI that identifies the specific occurrence of the problem.@Min(100L) @Max(600L) IntegergetStatus()The HTTP status code generated by the origin server for this occurrence of the problem.StringgetTitle()A short, summary of the problem type.@Valid URIgetType()An absolute URI that identifies the problem type.inthashCode()Probleminstance(URI instance)voidsetDetail(String detail)voidsetInstance(URI instance)voidsetStatus(Integer status)voidsetTitle(String title)voidsetType(URI type)Problemstatus(Integer status)Problemtitle(String title)StringtoString()Problemtype(URI type)
-
-
-
Method Detail
-
getType
@Valid public @Valid URI getType()
An absolute URI that identifies the problem type. When dereferenced, it SHOULD provide human-readable documentation for the problem type (e.g., using HTML).- Returns:
- type
-
setType
public void setType(URI type)
-
getTitle
public String getTitle()
A short, summary of the problem type. Written in english and readable for engineers (usually not suited for non technical stakeholders and not localized); example: Service Unavailable- Returns:
- title
-
setTitle
public void setTitle(String title)
-
getStatus
@Min(100L) @Max(600L) public @Min(100L) @Max(600L) Integer getStatus()
The HTTP status code generated by the origin server for this occurrence of the problem. minimum: 100 maximum: 600- Returns:
- status
-
setStatus
public void setStatus(Integer status)
-
getDetail
public String getDetail()
A human readable explanation specific to this occurrence of the problem.- Returns:
- detail
-
setDetail
public void setDetail(String detail)
-
getInstance
@Valid public @Valid URI getInstance()
An absolute URI that identifies the specific occurrence of the problem. It may or may not yield further information if dereferenced.- Returns:
- instance
-
setInstance
public void setInstance(URI instance)
-
-