Skip to content

Commit

Permalink
Implement new getLogExhaustedMessageBody abstract method
Browse files Browse the repository at this point in the history
  • Loading branch information
astefanutti committed Apr 15, 2016
1 parent fb19e51 commit d51c6b8
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,9 @@ public class CamelContextFactoryBean extends AbstractCamelContextFactoryBean<Def
@XmlAttribute
private String messageHistory;

@XmlAttribute
private String logExhaustedMessageBody;

@XmlAttribute
private String streamCache;

Expand Down Expand Up @@ -449,6 +452,15 @@ public void setMessageHistory(String messageHistory) {
this.messageHistory = messageHistory;
}

@Override
public String getLogExhaustedMessageBody() {
return logExhaustedMessageBody;
}

public void setLogExhaustedMessageBody(String logExhaustedMessageBody) {
this.logExhaustedMessageBody = logExhaustedMessageBody;
}

public String getStreamCache() {
return streamCache;
}
Expand Down

0 comments on commit d51c6b8

Please sign in to comment.