/* (c) Copyright 2011 Telefonica, I+D. Printed in Spain (Europe). All Righ Reserved. The copyright to the software program(s) is property of Telefonica I+D. The program(s) may be used and or copied only with the express written consent of Telefonica I+D or in accordance with the terms and conditions stipulated in the agreement/contract under which the program(s) have been supplied. */ package com.telefonica.claudia.slm.eventsBus.events; public class InfrastructureSLAViolationEvent extends Event { private static final long serialVersionUID = 1L; private String fqnString = null; public InfrastructureSLAViolationEvent(long t_0, long delta_t, String fqnString) { super(t_0, delta_t, EventType.INFRASTRUCTURE_SLA_VIOLATION_EVENT); this.fqnString = fqnString; } public String getFQN() { return fqnString; } }