Skip to content

Commit

Permalink
Fixing javadoc issues for Maven central release in #40
Browse files Browse the repository at this point in the history
  • Loading branch information
jonashackt committed Feb 1, 2019
1 parent e34a2c9 commit 7e31585
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ public WebServiceAutoDetector(WebServiceScanner webServiceScanner) throws BootSt
}

/**
* Detects & instantiates the SEI-Implementation. Therefore it detects the SEI itself first.
* Detects and instantiates the SEI-Implementation. Therefore it detects the SEI itself first.
*
* @param <T>
* @return
* @throws BootStarterCxfException
* @param <T> returns the instantiated Service Endpoint Interface (SEI) implementation
* @return returns the instantiated Service Endpoint Interface (SEI) implementation
* @throws BootStarterCxfException if the the SEI or it's implementation class wasn't found
*/
public <T> T searchAndInstantiateSeiImplementation() throws BootStarterCxfException {
return searchAndInstantiateSeiImplementation(searchServiceEndpointInterface());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

/**
* FailureAnalyzer to show custom Failure Message, if the cxf-spring-boot-maven.properties is missing
* (which is generated by the https://github.com/codecentric/cxf-spring-boot-starter-maven-plugin &
* (which is generated by the https://github.com/codecentric/cxf-spring-boot-starter-maven-plugin and
* is mandatory for autodetection and instantiation of the CXF endpoint(s)).
*
* @author jonashackt
Expand Down
6 changes: 3 additions & 3 deletions src/main/java/de/codecentric/cxf/logging/BaseLogger.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public static <L> BaseLogger getLogger(Class<L> class2LogFor) {
* Puts the String it into the Slf4j MDC (Mapped Diagnostic Context, see <a href="http://logback.qos.ch/manual/mdc.html">http://logback.qos.ch/manual/mdc.html</a>} for more details)
* with the Key {@link ElasticsearchField#SOAP_MESSAGE_INBOUND} you can find in your Elasticsearch, when processed via logstash.
*
* @param inboundSoapMessage
* @param inboundSoapMessage the inbound SOAP message to log
*/
public void logInboundSoapMessage(String inboundSoapMessage) {
// see https://github.com/logstash/logstash-logback-encoder/tree/logstash-logback-encoder-4.5#event-specific-custom-fields
Expand All @@ -39,7 +39,7 @@ public void logInboundSoapMessage(String inboundSoapMessage) {
* Puts the String it into the Slf4j MDC (Mapped Diagnostic Context, see <a href="http://logback.qos.ch/manual/mdc.html">http://logback.qos.ch/manual/mdc.html</a>} for more details)
* with the Key {@link ElasticsearchField#SOAP_MESSAGE_OUTBOUND} you can find in your Elasticsearch, when processed via logstash.
*
* @param outboundSoapMessage
* @param outboundSoapMessage the outbound SOAP message to log
*/
public void logOutboundSoapMessage(String outboundSoapMessage) {
log2Elasticsearch(ElasticsearchField.SOAP_MESSAGE_OUTBOUND, outboundSoapMessage, "<]=== Outbound-SoapMessage <]=== stored in ElasticsearchField '{}'");
Expand All @@ -49,7 +49,7 @@ public void logOutboundSoapMessage(String outboundSoapMessage) {
* Puts the String it into the Slf4j MDC (Mapped Diagnostic Context, see <a href="http://logback.qos.ch/manual/mdc.html">http://logback.qos.ch/manual/mdc.html</a>} for more details)
* with the Key {@link ElasticsearchField#HTTP_HEADER_INBOUND} you can find in your Elasticsearch, when processed via logstash.
*
* @param headers
* @param headers the HTTP headers to log
*/
public void logHttpHeader(String headers) {
log2Elasticsearch(ElasticsearchField.HTTP_HEADER_INBOUND, headers, "001 >>> Header in Inbound-HTTP-Message stored in Elasticsearch-Field '{}'");
Expand Down

0 comments on commit 7e31585

Please sign in to comment.