log.trace("registerSubsegment(" + subSegmentName + ")");
// check parent authority
if (parentAuthority == null) throw new NullPointerException();
if (! (parentAuthority instanceof DbAuthority)) throw new StoreNotFoundException("Parent authority is not from this store.");
// check if the parent authority overrides the CREATE pipeline. if not, use the default.
PipelineRegistry pipelineRegistry = (this.serverConfig == null) ? null : this.serverConfig.getPipelineRegistry();
Pipeline createPipeline = null;