com.merkle.oss.magnolia.powernode.predicate.magnolia.IsComponent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of magnolia-powernode Show documentation
Show all versions of magnolia-powernode Show documentation
compiles and bundles generated and base classes
package com.merkle.oss.magnolia.powernode.predicate.magnolia;
import com.merkle.oss.magnolia.powernode.predicate.IsPrimaryNodeType;
import info.magnolia.jcr.util.NodeTypes;
import javax.jcr.Node;
public class IsComponent extends IsPrimaryNodeType {
public IsComponent() {
super(NodeTypes.Component.NAME);
}
}