]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.specs/src/main/java/org/argeo/slc/structure/StructureAware.java
Provisioning
[gpl/argeo-slc.git] / runtime / org.argeo.slc.specs / src / main / java / org / argeo / slc / structure / StructureAware.java
1 package org.argeo.slc.structure;
2
3 /**
4 * Wrapper for an element, which is able to propagate registration to
5 * sub-elements.
6 */
7 public interface StructureAware<T extends StructurePath> {
8 /** Called <b>after</b> registration. */
9 public void notifyCurrentPath(StructureRegistry<T> registry, T path);
10 }