brooklyn.catalog.internal.CatalogPolicyItemDto Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of brooklyn-core Show documentation
Show all versions of brooklyn-core Show documentation
Entity implementation classes, events, and other core elements
package brooklyn.catalog.internal;
import brooklyn.policy.Policy;
public class CatalogPolicyItemDto extends CatalogItemDtoAbstract {
@Override
public CatalogItemType getCatalogItemType() {
return CatalogItemType.POLICY;
}
@Override
public Class getCatalogItemJavaType() {
return Policy.class;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy