}
@SuppressWarnings("unchecked")
protected OadrSignedObject createEventPayload() {
final XMLGregorianCalendar startDttm = xmlDataTypeFac.newXMLGregorianCalendar("2012-01-01T00:00:00Z");
final ObjectFactory eiObjectFactory = new ObjectFactory();
return new OadrSignedObject()
.withOadrDistributeEvent( new OadrDistributeEvent()
.withRequestID( "test 1234" )
.withVtnID( "hi" )
.withOadrEvents( new OadrEvent()
.withEiEvent(
new EiEvent()
.withEiTarget( new EiTarget()
.withVenIDs("ven-1234") )
.withEventDescriptor(new EventDescriptor()
.withEventID("event-1234")
.withModificationNumber(0)
.withEventStatus(EventStatusEnumeratedType.FAR)
.withPriority(1L)
.withEiMarketContext(new EiMarketContext(
new MarketContext("http://enernoc.com")))
.withCreatedDateTime(new DateTime(startDttm)))
.withEiActivePeriod(new EiActivePeriod()
.withProperties(new Properties()
.withDtstart(new Dtstart(new DateTime(startDttm)))
.withDuration(new DurationPropType(new DurationValue("PT1M")))
.withTolerance( new Tolerance(new Tolerate(new DurationValue("PT5S"))))
.withXEiNotification(new DurationPropType(new DurationValue("PT5S")))
))
.withEiEventSignals( new EiEventSignals()
.withEiEventSignals( new EiEventSignal()
.withSignalID("hi there")
.withCurrentValue(new CurrentValue(new PayloadFloatType(1.0f)))
.withSignalName("simple")
.withSignalType(SignalTypeEnumeratedType.LEVEL)
.withIntervals( new Intervals()
.withIntervals( new Interval()
.withStreamPayloadBases( eiObjectFactory.createSignalPayload(
new SignalPayload( eiObjectFactory.createPayloadFloat(
new PayloadFloatType( 1.0f) ) ) ) )
.withDuration( new DurationPropType( new DurationValue( "PT1M" )) )
.withDtstart( new Dtstart(new DateTime( startDttm )) )
)
)