// PolicyConfigurationNamespaces returns a list of other policy configuration namespaces to search // for if explicit configuration for PolicyConfigurationIdentity() is not set. The list will be processed // in order, terminating on first match, and an implicit "" is always checked at the end. // It is STRONGLY recommended for the first element, if any, to be a prefix of PolicyConfigurationIdentity(), // and each following element to be a prefix of the element preceding it. func (ref dockerReference) PolicyConfigurationNamespaces() []string { return policyconfiguration.DockerReferenceNamespaces(ref.ref) }
func (ref pcImageReferenceMock) PolicyConfigurationNamespaces() []string { if ref.ref == nil { panic("unexpected call to a mock function") } return policyconfiguration.DockerReferenceNamespaces(ref.ref) }