All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sap.cds.repackaged.audit.client.impl.ConfigurationChangeMessageImpl Maven / Gradle / Ivy

There is a newer version: 3.2.0
Show newest version

package com.sap.cds.repackaged.audit.client.impl;

import java.util.UUID;

import com.sap.cds.repackaged.audit.api.ConfigurationChangeAuditMessage;
import com.sap.cds.repackaged.audit.api.exception.AuditLogNotAvailableException;
import com.sap.cds.repackaged.audit.api.exception.AuditLogWriteException;
import com.sap.xs.audit.message.ConfigurationChange;

/**
 * This class implements the main audit log message interfaces, and encapsulates the formating functionality of the
 * audit log messages. This object is not thread safe thus in case of parallel threads its access need to be
 * synchronized.
 * 
 */
@Deprecated
public class ConfigurationChangeMessageImpl extends TransactionalLogImpl implements ConfigurationChangeAuditMessage {

	protected Object messageId;

	public ConfigurationChangeMessageImpl(AuditLogMessageFactoryImpl factory) {
		super(factory);
		this.endpoint = factory.getServiceUrl() + "configuration-changes";
		message = new ConfigurationChange();
		message.setUuid(UUID.randomUUID().toString());
	}

	@Override
	public void setObjectId(String objectId) {
		ensureNotLogged();
		message.setObjectId(objectId);
	}

	@Override
	public void addValue(String name, String oldValue, String newValue) {
		ensureNotLogged();
		message.addAttribute(name, oldValue, newValue);
	}

	@Override
	public void log() throws AuditLogNotAvailableException, AuditLogWriteException {
		logSuccess();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy