OXY-AUTHENTICATION 1.0
OXY-AUTHENTICATION Library Documentation
Loading...
Searching...
No Matches
oxy::authentication::IIdentifier Interface Referenceabstract

Interface for managing an identifier in the oxy authentication system. More...

#include <identifier.hpp>

Public Member Functions

virtual maybe< std::string > get ()=0
 Retrieves the current identifier.
virtual void set (std::string const &identifier)=0
 Sets the current identifier.

Detailed Description

Interface for managing an identifier in the oxy authentication system.

This interface defines methods for getting and setting an identifier, which is typically used for authentication purposes. Implementations of this interface should provide the logic for storing and retrieving the identifier, potentially using encryption or other security measures.

Member Function Documentation

◆ set()

virtual void oxy::authentication::IIdentifier::set ( std::string const & identifier)
pure virtual

Sets the current identifier.

Parameters
identifierThe identifier to set.