Package org.httpfeeds.server
Class HttpFeedServerProperties
- java.lang.Object
-
- org.httpfeeds.server.HttpFeedServerProperties
-
@ConfigurationProperties(prefix="httpfeed.server") public class HttpFeedServerProperties extends Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classHttpFeedServerProperties.Credentialstatic classHttpFeedServerProperties.Jdbc
-
Constructor Summary
Constructors Constructor Description HttpFeedServerProperties()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<HttpFeedServerProperties.Credential>getCredentials()HttpFeedServerProperties.JdbcgetJdbc()intgetLimit()StringgetPath()DurationgetPollInterval()voidsetCredentials(List<HttpFeedServerProperties.Credential> credentials)voidsetJdbc(HttpFeedServerProperties.Jdbc jdbc)voidsetLimit(int limit)voidsetPath(String path)voidsetPollInterval(Duration pollInterval)
-
-
-
Method Detail
-
getPath
public String getPath()
-
setPath
public void setPath(String path)
-
getLimit
public int getLimit()
-
setLimit
public void setLimit(int limit)
-
getJdbc
public HttpFeedServerProperties.Jdbc getJdbc()
-
setJdbc
public void setJdbc(HttpFeedServerProperties.Jdbc jdbc)
-
getCredentials
public List<HttpFeedServerProperties.Credential> getCredentials()
-
setCredentials
public void setCredentials(List<HttpFeedServerProperties.Credential> credentials)
-
getPollInterval
public Duration getPollInterval()
-
setPollInterval
public void setPollInterval(Duration pollInterval)
-
-