Packages

o

codacy.git.authentication

SSHAuthenticationWrapper

object SSHAuthenticationWrapper extends ContextLogging

Linear Supertypes
ContextLogging, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SSHAuthenticationWrapper
  2. ContextLogging
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  6. def commandWithKey(projectData: String, command: String, repositoryKeysLocation: String)(implicit logContext: ProjectLogContext): Seq[String]

    Generates a sequence of strings representing a command that includes an ssh-add command with a private key, which is intended to be run in a new shell started by ssh-agent.

    Generates a sequence of strings representing a command that includes an ssh-add command with a private key, which is intended to be run in a new shell started by ssh-agent.

    Side-effect: the private key is written to a file at a given location.

    projectData

    the data of the project, it's used to derive the key file name via its hash code. it's also parsed to extract repository details which include the private key

    command

    the command to execute after the ssh key has been added

    repositoryKeysLocation

    the location where the private key file is written

    returns

    a sequence of strings representing the full command

  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  9. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  10. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  13. lazy val logger: ContextAwareLogger
    Attributes
    protected
    Definition Classes
    ContextLogging
    Annotations
    @transient()
  14. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  16. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  17. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  18. def toString(): String
    Definition Classes
    AnyRef → Any
  19. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  20. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  21. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  22. def wrap(projectRequest: ProjectRequest, command: String, repositoryKeysLocation: String)(implicit logContext: ProjectLogContext): Seq[String]

    Wrap given command with ssh-agent and ssh-add command with a private key.

    Wrap given command with ssh-agent and ssh-add command with a private key. WARNING: Include side effects of writing the private key to a file.

Inherited from ContextLogging

Inherited from AnyRef

Inherited from Any

Ungrouped