Uses of Class
es.bsc.dataclay.util.management.accountmgr.Account
-
Packages that use Account Package Description es.bsc.dataclay.commonruntime Module responsible to interact with Useres.bsc.dataclay.communication.grpc.clients.logicmodule Contains Logic module client GRPC classes.es.bsc.dataclay.logic Module that represents the entry to the systemes.bsc.dataclay.logic.accountmgr Module intended to management of accounts.es.bsc.dataclay.logic.api Module intended to provide API of Logic Modulees.bsc.dataclay.util.configs Utility classes for Configuration files in Servers -
-
Uses of Account in es.bsc.dataclay.commonruntime
Methods in es.bsc.dataclay.commonruntime with parameters of type Account Modifier and Type Method Description static AccountID
ClientManagementLib. newAccount(Account newAcc)
This operation creates a new account in the system with the provided username. -
Uses of Account in es.bsc.dataclay.communication.grpc.clients.logicmodule
Methods in es.bsc.dataclay.communication.grpc.clients.logicmodule with parameters of type Account Modifier and Type Method Description AccountID
LogicModuleGrpcClient. newAccount(AccountID adminAccountID, PasswordCredential adminCredential, Account newAccount)
AccountID
LogicModuleGrpcClient. newAccountNoAdmin(Account newAccount)
-
Uses of Account in es.bsc.dataclay.logic
Methods in es.bsc.dataclay.logic with parameters of type Account Modifier and Type Method Description AccountID
LogicModule. newAccount(AccountID adminAccountID, PasswordCredential adminCredential, Account newAccount)
AccountID
LogicModule. newAccountNoAdmin(Account newAccount)
-
Uses of Account in es.bsc.dataclay.logic.accountmgr
Methods in es.bsc.dataclay.logic.accountmgr that return Account Modifier and Type Method Description Account
AccountManager. getAccount(AccountID id)
Get the the account with the id provided.Account
AccountManagerDB. getByID(AccountID accountID)
Get Account by IDAccount
AccountManagerDB. getByName(String accountName)
Get Account by nameMethods in es.bsc.dataclay.logic.accountmgr that return types with arguments of type Account Modifier and Type Method Description List<Account>
AccountManagerDB. getAllNormalAccounts()
Get all normal accountsMethods in es.bsc.dataclay.logic.accountmgr with parameters of type Account Modifier and Type Method Description AccountID
AccountManager. newAccount(AccountID adminAccountID, PasswordCredential adminCredential, Account newaccount)
Method that registers a new accountvoid
AccountManagerDB. store(Account account)
Store Account into database -
Uses of Account in es.bsc.dataclay.logic.api
Methods in es.bsc.dataclay.logic.api with parameters of type Account Modifier and Type Method Description AccountID
LogicModuleAPI. newAccount(AccountID adminAccountID, PasswordCredential adminCredential, Account newAccount)
This operation creates a new account in the system with the provided username.AccountID
LogicModuleAPI. newAccountNoAdmin(Account newAccount)
This operation creates a new account in the system without admin credentials. -
Uses of Account in es.bsc.dataclay.util.configs
Methods in es.bsc.dataclay.util.configs that return Account Modifier and Type Method Description static Account
CfgAdminEnvLoader. parseAdminUser()
Parse account admin user
-