class T2Server::HttpBasic

A class representing HTTP Basic credentials. Use this class to authenticate operations on a Taverna Server that require it.

See also Util.strip_uri_credentials.

Public Class Methods

new(username, password) → HttpBasic click to toggle source

Create a set of basic credentials using the supplied username and password.

Calls superclass method
    # File lib/t2-server/net/credentials.rb
 99 def initialize(username, password)
100   super(username, password)
101 end