forked from AmbaPant/mantid
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCatalogLogin.h
53 lines (48 loc) · 1.81 KB
/
CatalogLogin.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// Mantid Repository : https://github.com/mantidproject/mantid
//
// Copyright © 2010 ISIS Rutherford Appleton Laboratory UKRI,
// NScD Oak Ridge National Laboratory, European Spallation Source,
// Institut Laue - Langevin & CSNS, Institute of High Energy Physics, CAS
// SPDX - License - Identifier: GPL - 3.0 +
#pragma once
#include "MantidAPI/Algorithm.h"
#include "MantidICat/DllConfig.h"
namespace Mantid {
namespace ICat {
/**
This class is responsible for authentication of credentials against the
catalog.
Required Properties:
<UL>
<LI> Username - The logged in user name </LI>
<LI> Password - The password of the logged in user </LI>
<LI> Facility name - The name of the facility to log in to </LI>
</UL>
@author Sofia Antony, ISIS Rutherford Appleton Laboratory
@date 07/07/2010
*/
class MANTID_ICAT_DLL CatalogLogin : public API::Algorithm {
public:
/// constructor
CatalogLogin() : API::Algorithm() {}
/// Destructor
~CatalogLogin() override {}
/// Algorithm's name for identification overriding a virtual method
const std::string name() const override { return "CatalogLogin"; }
/// Summary of algorithms purpose.
const std::string summary() const override { return "Authenticates credentials against a given catalog."; }
/// Algorithm's version for identification overriding a virtual method
int version() const override { return 1; }
const std::vector<std::string> seeAlso() const override {
return {"CatalogLogout", "CatalogSearch", "CatalogPublish"};
}
/// Algorithm's category for identification overriding a virtual method
const std::string category() const override { return "DataHandling\\Catalog"; }
private:
/// Overwrites Algorithm method.
void init() override;
/// Overwrites Algorithm method
void exec() override;
};
} // namespace ICat
} // namespace Mantid