argos/dmp-backend/notification-service/notification/src/main/java/gr/cite/notification/integrationevent/IntegrationEventContextImpl...

25 lines
477 B
Java

package gr.cite.notification.integrationevent;
import gr.cite.rabbitmq.IntegrationEventContext;
import org.springframework.stereotype.Component;
import java.util.UUID;
@Component
public class IntegrationEventContextImpl implements IntegrationEventContext {
private UUID tenant;
public IntegrationEventContextImpl() {
}
public UUID getTenant() {
return tenant;
}
public void setTenant(UUID tenant) {
this.tenant = tenant;
}
}