class T2Server::HttpBasic

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

See also T2Server::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, line 99
def initialize(username, password)
  super(username, password)
end