Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ test-output/
/pre-it-logs.zip
/server-logs/
/integration-test-results/
/integration-test-results.zip
/integration-test-results.zip
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@

/**
* Defines the internal FHIR Server APIs for audit logging
*
* @author markd
*
*/
public interface AuditLogService {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,6 @@
/**
* This class is a Cadf/EventStream/COS based implementation of the FHIR server
* AuditLogService interface
*
* @author Albert Wang
*
*/
public class WhcAuditCadfLogService implements AuditLogService {
private static final Logger logger = java.util.logging.Logger.getLogger(WhcAuditCadfLogService.class.getName());
Expand Down Expand Up @@ -91,14 +88,6 @@ public class WhcAuditCadfLogService implements AuditLogService {
public WhcAuditCadfLogService() {
super();
}

/*
* (non-Javadoc)
*
* @see
* com.ibm.fhir.audit.logging.api.AuditLogService#initialize(com.
* ibm.fhir.config.PropertyGroup)
*/
@Override
public void initialize(PropertyGroup auditLogProperties) throws Exception {

Expand Down Expand Up @@ -199,11 +188,6 @@ public void logEntry(AuditLogEntry logEntry) throws Exception {

}

/*
* (non-Javadoc)
*
* @see com.ibm.fhir.audit.logging.api.AuditLogService#isEnabled()
*/
@Override
public boolean isEnabled() {
return this.isEnabled;
Expand Down
Loading