Package org.apache.ambari.server.controller.internal

Examples of org.apache.ambari.server.controller.internal.ResourceImpl.addCategory()


    String categoryId = PropertyHelper.getPropertyId("category1", null);
    Predicate predicate = new CategoryIsEmptyPredicate(categoryId);

    Assert.assertTrue(predicate.evaluate(resource));

    resource.addCategory(categoryId);
    Assert.assertTrue(predicate.evaluate(resource));

    String propertyId = PropertyHelper.getPropertyId("category1", "bar");
    resource.setProperty(propertyId, "value1");
    Assert.assertFalse(predicate.evaluate(resource));
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.