* {@inheritDoc}
* @param aggregate
*/
public ArtifactSetImpl createArtifacts(AggregateImpl aggregate) throws RepositoryException {
ArtifactSetImpl artifacts = new ArtifactSetImpl();
Serializer ser = new CNDSerializer(aggregate);
artifacts.add(null, aggregate.getRelPath(), ".xcnd", ArtifactType.PRIMARY, ser, 0);
return artifacts;
}