CycloneTechnology/ChaMP

View on GitHub
champ-core/src/main/scala/com/cyclone/util/kerberos/KerberosArtifactSource.scala

Summary

Maintainability
A
0 mins
Test Coverage
package com.cyclone.util.kerberos

import scala.concurrent.Future

/**
  * Source of [[KerberosArtifacts]]
  */
trait KerberosArtifactsSource {
  def kerberosArtifacts: Future[KerberosArtifacts]
}

trait KerberosArtifactsSourceComponent {
  def kerberosArtifactsSource: KerberosArtifactsSource
}