Grundlagen6
App6
REST-Endpunkte44
- Activity
- Category
- Category - CategoryType
- ChangeLog
- Client
- Client - ClientPreference
- Client - CompanyInfoResource
- Client - Logo
- Comment
- Conversion
- Document
- Document - AdditionalProperty
- Document - ChangeLog
- Document - ExtensionValue
- Document - Lock
- Document - Rating
- Document - SavedSearch
- Document - Search
- InstanceControl
- InstanceControl - MtrMessage
- InstanceControl - Preference
- Language
- Licence
- Logon
- Logon - AutoLogin
- Logon - LTI
- Logon - MagicLink
- Logon - Ntlm
- Logon - OAuth2 - Cobot
- Logon - OAuth2 - Google
- Logon - OAuth2 - Microsoft
- Logon - Saml
- Notification
- Person
- Person - AccountSetting
- Person - Search
- Role
- Skin
- Task
- Task - TaskStatus
- TempFile
- Test
- Tracking
- Version
API-Objekte41
- AccountSetting
- Activity
- AdditionalProperty
- Attachment
- Category
- CategoryType
- Client
- Comment
- CompanyInfoItem
- Credential
- CredentialWithInvitationText
- DataSource
- Document
- DocumentChangeLog
- DocumentChangeLogMap
- DocumentClipBoardEntry
- DocumentDuplicate
- DocumentForPdfConversion
- DocumentLock
- ExtensionValue
- Language
- Licence
- LicenceUsage
- LoginData
- Logon
- MtrMessage
- MtrVersion
- NotificationContainer
- PasswordContainer
- Person
- PreferenceMapContainer
- Role
- SavedSearch
- SearchAutocompleteSuggest
- SearchResult<Document/Person>
- Signup
- Task
- TaskStatus
- TempFileDescriptor
- TrackingItem
- WildflyDataSource
Constants
Origin
/** login with password */
public static final int ORIGIN_INTERNAL_LOGIN = 1;
/** special origin: task */
public static final int ORIGIN_INTERNAL_TASK = 2;
/** special origin: change instance */
public static final int ORIGIN_CHANGE_INSTANCE = 3;
/** already authenticated: LTI */
public static final int ORIGIN_LTI = 4;
/** already authenticated: Microsoft */
public static final int ORIGIN_OAUTH_MICROSOFT = 5;
/** already authenticated: Google */
public static final int ORIGIN_OAUTH_GOOGLE = 6;
/** already authenticated: Cobot */
public static final int ORIGIN_OAUTH_COBOT = 7;
/** already authenticated: Auto */
public static final int ORIGIN_AUTO = 8;
/** already authenticated: Cookie */
public static final int ORIGIN_COOKIE = 9;
/** already authenticated: MAGIC_LINK */
public static final int ORIGIN_MAGIC_LINK = 10;
/** already authenticated: NTLM */
public static final int ORIGIN_NTLM = 11;
/** already authenticated: SAML */
public static final int ORIGIN_SAML = 12;
/** already authenticated: Impersonate */
public static final int ORIGIN_IMPERSONATE = 13;
/** Login origins, that are allowed to change password without knowing the old one */
public static final List<Integer> ORIGINS_WITH_PWD_SET_ENABLED;
static {
List<Integer> l = new ArrayList<>();
l.add(ORIGIN_OAUTH_MICROSOFT);
l.add(ORIGIN_OAUTH_GOOGLE);
l.add(ORIGIN_OAUTH_COBOT);
l.add(ORIGIN_MAGIC_LINK);
ORIGINS_WITH_PWD_SET_ENABLED = Collections.unmodifiableList(l);
}