Examples of ResourceBuilder


Examples of org.rhq.core.domain.shared.ResourceBuilder

                alertDef.getParentId());
        }
    }

    private Resource createResourceForTest(String resourceKey) {
        Resource res = new ResourceBuilder().createPlatform().withRandomUuid().withResourceKey(resourceKey)
            .withResourceType(resourceType).withName(resourceKey).withInventoryStatus(InventoryStatus.COMMITTED)
            .build();
        res.setAgent(agent);

        return res;
View Full Code Here

Examples of org.rhq.core.domain.shared.ResourceBuilder

        return new ResourceTypeBuilder().createResourceType().withId(0).withName(JPADriftChangeSetTest.class.getName())
            .withCategory(SERVER).withPlugin(JPADriftChangeSetTest.class.getName().toLowerCase()).build();
    }

    private Resource createResource(ResourceType type) {
        return new ResourceBuilder().createResource().withId(0)
            .withName(JPADriftChangeSetTest.class.getSimpleName() + "_" + resourceCount++)
            .withResourceKey(JPADriftChangeSetTest.class.getSimpleName() + "_" + resourceCount)
            .withUuid(JPADriftChangeSetTest.class.getSimpleName() + "_" + resourceCount).withResourceType(type).build();
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.