Package com.puppetlabs.puppetdb.javaclient.model

Examples of com.puppetlabs.puppetdb.javaclient.model.Event


        int top = events.size();
        if(top > 0) {
          Map<String, Resource> resources = buildResourceMap(events);
          tuples = new ResourceEvent[top];
          for(int idx = 0; idx < top; ++idx) {
            Event event = events.get(idx);
            Resource resource = resources.get(getResourceKey(
              event.getCertname(), event.getResourceTitle(), event.getResourceType()));
            tuples[idx] = new ResourceEvent(this, event, resource, getResourceEventImage());
          }
        }
      }
      synchronized(this) {
View Full Code Here

TOP

Related Classes of com.puppetlabs.puppetdb.javaclient.model.Event

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.