Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/**
* Autogenerated by Thrift
*
* DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
*/
package com.evernote.edam.limits;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.util.HashMap;
import java.util.Set;
import java.util.HashSet;
/**
* Contains constant values specified by this package.
*/
public class Constants {
/**
* Minimum length of any string-based attribute, in Unicode chars
*/
public static final int EDAM_ATTRIBUTE_LEN_MIN = 1;
/**
* Maximum length of any string-based attribute, in Unicode chars
*/
public static final int EDAM_ATTRIBUTE_LEN_MAX = 4096;
/**
* Any string-based attribute must match the provided regular expression.
* This excludes all Unicode line endings and control characters.
*/
public static final String EDAM_ATTRIBUTE_REGEX = "^[^\\p{Cc}\\p{Zl}\\p{Zp}]{1,4096}$";
/**
* The maximum number of values that can be stored in a list-based attribute
* (e.g. see UserAttributes.recentMailedAddresses)
*/
public static final int EDAM_ATTRIBUTE_LIST_MAX = 100;
/**
* The maximum number of entries that can be stored in a map-based attribute
* such as applicationData fields in Resources and Notes.
*/
public static final int EDAM_ATTRIBUTE_MAP_MAX = 100;
/**
* The minimum length of a GUID generated by the Evernote service
*/
public static final int EDAM_GUID_LEN_MIN = 36;
/**
* The maximum length of a GUID generated by the Evernote service
*/
public static final int EDAM_GUID_LEN_MAX = 36;
/**
* GUIDs generated by the Evernote service will match the provided pattern
*/
public static final String EDAM_GUID_REGEX = "^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$";
/**
* The minimum length of any email address
*/
public static final int EDAM_EMAIL_LEN_MIN = 6;
/**
* The maximum length of any email address
*/
public static final int EDAM_EMAIL_LEN_MAX = 255;
/**
* A regular expression that matches the part of an email address before
* the '@' symbol.
*/
public static final String EDAM_EMAIL_LOCAL_REGEX = "^[A-Za-z0-9!#$%&'*+/=?^_`{|}~-]+(\\.[A-Za-z0-9!#$%&'*+/=?^_`{|}~-]+)*$";
/**
* A regular expression that matches the part of an email address after
* the '@' symbol.
*/
public static final String EDAM_EMAIL_DOMAIN_REGEX = "^[A-Za-z0-9-]+(\\.[A-Za-z0-9-]+)*\\.([A-Za-z]{2,})$";
/**
* A regular expression that must match any email address given to Evernote.
* Email addresses must comply with RFC 2821 and 2822.
*/
public static final String EDAM_EMAIL_REGEX = "^[A-Za-z0-9!#$%&'*+/=?^_`{|}~-]+(\\.[A-Za-z0-9!#$%&'*+/=?^_`{|}~-]+)*@[A-Za-z0-9-]+(\\.[A-Za-z0-9-]+)*\\.([A-Za-z]{2,})$";
/**
* A regular expression that must match any VAT ID given to Evernote.
*/
public static final String EDAM_VAT_REGEX = "[A-Za-z]{2}.+";
/**
* The minimum length of a timezone specification string
*/
public static final int EDAM_TIMEZONE_LEN_MIN = 1;
/**
* The maximum length of a timezone specification string
*/
public static final int EDAM_TIMEZONE_LEN_MAX = 32;
/**
* Any timezone string given to Evernote must match the provided pattern.
* This permits either a locale-based standard timezone or a GMT offset.
* E.g.:
*
America/Los_Angeles
*
GMT+08:00
*
*/
public static final String EDAM_TIMEZONE_REGEX = "^([A-Za-z_-]+(/[A-Za-z_-]+)*)|(GMT(-|\\+)[0-9]{1,2}(:[0-9]{2})?)$";
/**
* The minimum length of any MIME type string given to Evernote
*/
public static final int EDAM_MIME_LEN_MIN = 3;
/**
* The maximum length of any MIME type string given to Evernote
*/
public static final int EDAM_MIME_LEN_MAX = 255;
/**
* Any MIME type string given to Evernote must match the provided pattern.
* E.g.: image/gif
*/
public static final String EDAM_MIME_REGEX = "^[A-Za-z]+/[A-Za-z0-9._+-]+$";
/**
* Canonical MIME type string for GIF image resources
*/
public static final String EDAM_MIME_TYPE_GIF = "image/gif";
/**
* Canonical MIME type string for JPEG image resources
*/
public static final String EDAM_MIME_TYPE_JPEG = "image/jpeg";
/**
* Canonical MIME type string for PNG image resources
*/
public static final String EDAM_MIME_TYPE_PNG = "image/png";
/**
* Canonical MIME type string for WAV audio resources
*/
public static final String EDAM_MIME_TYPE_WAV = "audio/wav";
/**
* Canonical MIME type string for MP3 audio resources
*/
public static final String EDAM_MIME_TYPE_MP3 = "audio/mpeg";
/**
* Canonical MIME type string for AMR audio resources
*/
public static final String EDAM_MIME_TYPE_AMR = "audio/amr";
/**
* Canonical MIME type string for AAC audio resources
*/
public static final String EDAM_MIME_TYPE_AAC = "audio/aac";
/**
* Canonical MIME type string for MP4 audio resources
*/
public static final String EDAM_MIME_TYPE_M4A = "audio/mp4";
/**
* Canonical MIME type string for MP4 video resources
*/
public static final String EDAM_MIME_TYPE_MP4_VIDEO = "video/mp4";
/**
* Canonical MIME type string for Evernote Ink resources
*/
public static final String EDAM_MIME_TYPE_INK = "application/vnd.evernote.ink";
/**
* Canonical MIME type string for PDF resources
*/
public static final String EDAM_MIME_TYPE_PDF = "application/pdf";
/**
* MIME type used for attachments of an unspecified type
*/
public static final String EDAM_MIME_TYPE_DEFAULT = "application/octet-stream";
/**
* The set of resource MIME types that are expected to be handled
* correctly by all of the major Evernote client applications.
*/
public static final Set EDAM_MIME_TYPES = new HashSet();
static {
EDAM_MIME_TYPES.add("image/gif");
EDAM_MIME_TYPES.add("image/jpeg");
EDAM_MIME_TYPES.add("image/png");
EDAM_MIME_TYPES.add("audio/wav");
EDAM_MIME_TYPES.add("audio/mpeg");
EDAM_MIME_TYPES.add("audio/amr");
EDAM_MIME_TYPES.add("application/vnd.evernote.ink");
EDAM_MIME_TYPES.add("application/pdf");
EDAM_MIME_TYPES.add("video/mp4");
EDAM_MIME_TYPES.add("audio/aac");
EDAM_MIME_TYPES.add("audio/mp4");
}
/**
* The minimum length of a user search query string in Unicode chars
*/
public static final int EDAM_SEARCH_QUERY_LEN_MIN = 0;
/**
* The maximum length of a user search query string in Unicode chars
*/
public static final int EDAM_SEARCH_QUERY_LEN_MAX = 1024;
/**
* Search queries must match the provided pattern. This is used for
* both ad-hoc queries and SavedSearch.query fields.
* This excludes all control characters and line/paragraph separators.
*/
public static final String EDAM_SEARCH_QUERY_REGEX = "^[^\\p{Cc}\\p{Zl}\\p{Zp}]{0,1024}$";
/**
* The exact length of a MD5 hash checksum, in binary bytes.
* This is the exact length that must be matched for any binary hash
* value.
*/
public static final int EDAM_HASH_LEN = 16;
/**
* The minimum length of an Evernote username
*/
public static final int EDAM_USER_USERNAME_LEN_MIN = 1;
/**
* The maximum length of an Evernote username
*/
public static final int EDAM_USER_USERNAME_LEN_MAX = 64;
/**
* Any Evernote User.username field must match this pattern. This
* restricts usernames to a format that could permit use as a domain
* name component. E.g. "username.whatever.evernote.com"
*/
public static final String EDAM_USER_USERNAME_REGEX = "^[a-z0-9]([a-z0-9_-]{0,62}[a-z0-9])?$";
/**
* Minimum length of the User.name field
*/
public static final int EDAM_USER_NAME_LEN_MIN = 1;
/**
* Maximum length of the User.name field
*/
public static final int EDAM_USER_NAME_LEN_MAX = 255;
/**
* The User.name field must match this pattern, which excludes line
* endings and control characters.
*/
public static final String EDAM_USER_NAME_REGEX = "^[^\\p{Cc}\\p{Zl}\\p{Zp}]{1,255}$";
/**
* The minimum length of a Tag.name, in Unicode characters
*/
public static final int EDAM_TAG_NAME_LEN_MIN = 1;
/**
* The maximum length of a Tag.name, in Unicode characters
*/
public static final int EDAM_TAG_NAME_LEN_MAX = 100;
/**
* All Tag.name fields must match this pattern.
* This excludes control chars, commas or line/paragraph separators.
* The string may not begin or end with whitespace.
*/
public static final String EDAM_TAG_NAME_REGEX = "^[^,\\p{Cc}\\p{Z}]([^,\\p{Cc}\\p{Zl}\\p{Zp}]{0,98}[^,\\p{Cc}\\p{Z}])?$";
/**
* The minimum length of a Note.title, in Unicode characters
*/
public static final int EDAM_NOTE_TITLE_LEN_MIN = 1;
/**
* The maximum length of a Note.title, in Unicode characters
*/
public static final int EDAM_NOTE_TITLE_LEN_MAX = 255;
/**
* All Note.title fields must match this pattern.
* This excludes control chars or line/paragraph separators.
* The string may not begin or end with whitespace.
*/
public static final String EDAM_NOTE_TITLE_REGEX = "^[^\\p{Cc}\\p{Z}]([^\\p{Cc}\\p{Zl}\\p{Zp}]{0,253}[^\\p{Cc}\\p{Z}])?$";
/**
* Minimum length of a Note.content field.
* Note.content fields must comply with the ENML DTD.
*/
public static final int EDAM_NOTE_CONTENT_LEN_MIN = 0;
/**
* Maximum length of a Note.content field
* Note.content fields must comply with the ENML DTD.
*/
public static final int EDAM_NOTE_CONTENT_LEN_MAX = 5242880;
/**
* Minimum length of an application name, which is the key in an
* applicationData LazyMap found in entities such as Resources and
* Notes.
*/
public static final int EDAM_APPLICATIONDATA_NAME_LEN_MIN = 3;
/**
* Maximum length of an application name, which is the key in an
* applicationData LazyMap found in entities such as Resources and
* Notes.
*/
public static final int EDAM_APPLICATIONDATA_NAME_LEN_MAX = 32;
/**
* Minimum length of an applicationData value in a LazyMap, found
* in entities such as Resources and Notes.
*/
public static final int EDAM_APPLICATIONDATA_VALUE_LEN_MIN = 0;
/**
* Maximum length of an applicationData value in a LazyMap, found
* in entities such as Resources and Notes. Note, however, that
* the sum of the size of hte key and value is constrained by
* EDAM_APPLICATIONDATA_ENTRY_LEN_MAX, so the maximum length, in
* practice, depends upon the key value being used.
*/
public static final int EDAM_APPLICATIONDATA_VALUE_LEN_MAX = 4092;
/**
* The total length of an entry in an applicationData LazyMap, which
* is the sum of the length of the key and the value for the entry.
*/
public static final int EDAM_APPLICATIONDATA_ENTRY_LEN_MAX = 4095;
/**
* An application name must match this regex. An application
* name is the key portion of an entry in an applicationData
* map as found in entities such as Resources and Notes.
* Note that even if both the name and value regexes match,
* it is still necessary to check the sum of the lengths
* against EDAM_APPLICATIONDATA_ENTRY_LEN_MAX.
*/
public static final String EDAM_APPLICATIONDATA_NAME_REGEX = "^[A-Za-z0-9_.-]{3,32}$";
/**
* An applicationData map value must match this regex.
* Note that even if both the name and value regexes match,
* it is still necessary to check the sum of the lengths
* against EDAM_APPLICATIONDATA_ENTRY_LEN_MAX.
*/
public static final String EDAM_APPLICATIONDATA_VALUE_REGEX = "^[^\\p{Cc}]{0,4092}$";
/**
* The minimum length of a Notebook.name, in Unicode characters
*/
public static final int EDAM_NOTEBOOK_NAME_LEN_MIN = 1;
/**
* The maximum length of a Notebook.name, in Unicode characters
*/
public static final int EDAM_NOTEBOOK_NAME_LEN_MAX = 100;
/**
* All Notebook.name fields must match this pattern.
* This excludes control chars or line/paragraph separators.
* The string may not begin or end with whitespace.
*/
public static final String EDAM_NOTEBOOK_NAME_REGEX = "^[^\\p{Cc}\\p{Z}]([^\\p{Cc}\\p{Zl}\\p{Zp}]{0,98}[^\\p{Cc}\\p{Z}])?$";
/**
* The minimum length of a Notebook.stack, in Unicode characters
*/
public static final int EDAM_NOTEBOOK_STACK_LEN_MIN = 1;
/**
* The maximum length of a Notebook.stack, in Unicode characters
*/
public static final int EDAM_NOTEBOOK_STACK_LEN_MAX = 100;
/**
* All Notebook.stack fields must match this pattern.
* This excludes control chars or line/paragraph separators.
* The string may not begin or end with whitespace.
*/
public static final String EDAM_NOTEBOOK_STACK_REGEX = "^[^\\p{Cc}\\p{Z}]([^\\p{Cc}\\p{Zl}\\p{Zp}]{0,98}[^\\p{Cc}\\p{Z}])?$";
/**
* The minimum length of a public notebook URI component
*/
public static final int EDAM_PUBLISHING_URI_LEN_MIN = 1;
/**
* The maximum length of a public notebook URI component
*/
public static final int EDAM_PUBLISHING_URI_LEN_MAX = 255;
/**
* A public notebook URI component must match the provided pattern
*/
public static final String EDAM_PUBLISHING_URI_REGEX = "^[a-zA-Z0-9.~_+-]{1,255}$";
/**
* The set of strings that may not be used as a publishing URI
*/
public static final Set EDAM_PUBLISHING_URI_PROHIBITED = new HashSet();
static {
EDAM_PUBLISHING_URI_PROHIBITED.add("..");
}
/**
* The minimum length of a Publishing.publicDescription field.
*/
public static final int EDAM_PUBLISHING_DESCRIPTION_LEN_MIN = 1;
/**
* The maximum length of a Publishing.publicDescription field.
*/
public static final int EDAM_PUBLISHING_DESCRIPTION_LEN_MAX = 200;
/**
* Any public notebook's Publishing.publicDescription field must match
* this pattern.
* No control chars or line/paragraph separators, and can't start or
* end with whitespace.
*/
public static final String EDAM_PUBLISHING_DESCRIPTION_REGEX = "^[^\\p{Cc}\\p{Z}]([^\\p{Cc}\\p{Zl}\\p{Zp}]{0,198}[^\\p{Cc}\\p{Z}])?$";
/**
* The minimum length of a SavedSearch.name field
*/
public static final int EDAM_SAVED_SEARCH_NAME_LEN_MIN = 1;
/**
* The maximum length of a SavedSearch.name field
*/
public static final int EDAM_SAVED_SEARCH_NAME_LEN_MAX = 100;
/**
* SavedSearch.name fields must match this pattern.
* No control chars or line/paragraph separators, and can't start or
* end with whitespace.
*/
public static final String EDAM_SAVED_SEARCH_NAME_REGEX = "^[^\\p{Cc}\\p{Z}]([^\\p{Cc}\\p{Zl}\\p{Zp}]{0,98}[^\\p{Cc}\\p{Z}])?$";
/**
* The minimum length of an Evernote user password
*/
public static final int EDAM_USER_PASSWORD_LEN_MIN = 6;
/**
* The maximum length of an Evernote user password
*/
public static final int EDAM_USER_PASSWORD_LEN_MAX = 64;
/**
* Evernote user passwords must match this regular expression
*/
public static final String EDAM_USER_PASSWORD_REGEX = "^[A-Za-z0-9!#$%&'()*+,./:;<=>?@^_`{|}~\\[\\]\\\\-]{6,64}$";
/**
* The maximum length of an Evernote Business URI
*/
public static final int EDAM_BUSINESS_URI_LEN_MAX = 32;
/**
* The maximum number of Tags per Note
*/
public static final int EDAM_NOTE_TAGS_MAX = 100;
/**
* The maximum number of Resources per Note
*/
public static final int EDAM_NOTE_RESOURCES_MAX = 1000;
/**
* Maximum number of Tags per account
*/
public static final int EDAM_USER_TAGS_MAX = 100000;
/**
* Maximum number of Tags per business account.
*/
public static final int EDAM_BUSINESS_TAGS_MAX = 100000;
/**
* Maximum number of SavedSearches per account
*/
public static final int EDAM_USER_SAVED_SEARCHES_MAX = 100;
/**
* Maximum number of Notes per user
*/
public static final int EDAM_USER_NOTES_MAX = 100000;
/**
* Maximum number of Notes per business account
*/
public static final int EDAM_BUSINESS_NOTES_MAX = 500000;
/**
* Maximum number of Notebooks per user
*/
public static final int EDAM_USER_NOTEBOOKS_MAX = 250;
/**
* Maximum number of Notebooks in a business account
*/
public static final int EDAM_BUSINESS_NOTEBOOKS_MAX = 5000;
/**
* Maximum number of recent email addresses that are maintained
* (see UserAttributes.recentMailedAddresses)
*/
public static final int EDAM_USER_RECENT_MAILED_ADDRESSES_MAX = 10;
/**
* The number of emails of any type that can be sent by a user with a Free
* account from the service per day. If an email is sent to two different
* recipients, this counts as two emails.
*/
public static final int EDAM_USER_MAIL_LIMIT_DAILY_FREE = 50;
/**
* The number of emails of any type that can be sent by a user with a Premium
* account from the service per day. If an email is sent to two different
* recipients, this counts as two emails.
*/
public static final int EDAM_USER_MAIL_LIMIT_DAILY_PREMIUM = 200;
/**
* The number of bytes of new data that may be uploaded to a Free user's
* account each month.
*/
public static final long EDAM_USER_UPLOAD_LIMIT_FREE = 62914560L;
/**
* The number of bytes of new data that may be uploaded to a Premium user's
* account each month.
*/
public static final long EDAM_USER_UPLOAD_LIMIT_PREMIUM = 1073741824L;
/**
* The number of bytes of new data that may be uploaded to a business
* account each month.
*/
public static final long EDAM_USER_UPLOAD_LIMIT_BUSINESS = 1073741824L;
/**
* Maximum total size of a Note that can be added to a Free account.
* The size of a note is calculated as:
* ENML content length (in Unicode characters) plus the sum of all resource
* sizes (in bytes).
*/
public static final int EDAM_NOTE_SIZE_MAX_FREE = 26214400;
/**
* Maximum total size of a Note that can be added to a Premium account.
* The size of a note is calculated as:
* ENML content length (in Unicode characters) plus the sum of all resource
* sizes (in bytes).
*/
public static final int EDAM_NOTE_SIZE_MAX_PREMIUM = 104857600;
/**
* Maximum size of a resource, in bytes, for Free accounts
*/
public static final int EDAM_RESOURCE_SIZE_MAX_FREE = 26214400;
/**
* Maximum size of a resource, in bytes, for Premium accounts
*/
public static final int EDAM_RESOURCE_SIZE_MAX_PREMIUM = 104857600;
/**
* Maximum number of linked notebooks per account
*/
public static final int EDAM_USER_LINKED_NOTEBOOK_MAX = 100;
/**
* Maximum number of shared notebooks per notebook
*/
public static final int EDAM_NOTEBOOK_SHARED_NOTEBOOK_MAX = 250;
/**
* The minimum length of the content class attribute of a note.
*/
public static final int EDAM_NOTE_CONTENT_CLASS_LEN_MIN = 3;
/**
* The maximum length of the content class attribute of a note.
*/
public static final int EDAM_NOTE_CONTENT_CLASS_LEN_MAX = 32;
/**
* This string constant is the prefix one can use to obtain all
* types of notes for the Evernote 'Hello' application via
* filtered sync chunks or search strings, based off of the
* content class.
*/
public static final String EDAM_HELLO_APP_CONTENT_CLASS_PREFIX = "evernote.hello.";
/**
* This string constant is the prefix one can use to obtain all
* types of notes for the Evernote 'Food' application via
* filtered sync chunks or search strings, based off of the
* content class.
*/
public static final String EDAM_FOOD_APP_CONTENT_CLASS_PREFIX = "evernote.food.";
/**
* The regular expression that the content class of a note must match
* to be valid.
*/
public static final String EDAM_NOTE_CONTENT_CLASS_REGEX = "^[A-Za-z0-9_.-]{3,32}$";
/**
* The content class value used for notes structured specifically to
* represent an encounter with a person, as is done with the
* Evernote "Hello" application.
*/
public static final String EDAM_CONTENT_CLASS_HELLO_ENCOUNTER = "evernote.hello.encounter";
/**
* The content class value used for notes structured specifically to
* represent a profile of the user, as is done with the Evernote "Hello"
* application.
*/
public static final String EDAM_CONTENT_CLASS_HELLO_PROFILE = "evernote.hello.profile";
/**
* The content class value used for notes structured specifically to
* capture the experience of a particular meal, as is done with the
* Evernote "Food" application.
*/
public static final String EDAM_CONTENT_CLASS_FOOD_MEAL = "evernote.food.meal";
/**
* The content class value used for notes created by Evernote Skitch.
*/
public static final String EDAM_CONTENT_CLASS_SKITCH = "evernote.skitch";
/**
* The content class value used for notes created by Evernote Penultimate.
*/
public static final String EDAM_CONTENT_CLASS_PENULTIMATE = "evernote.penultimate";
/**
* The minimum length of the plain text in a findRelated query, assuming that
* plaintext is being provided.
*/
public static final int EDAM_RELATED_PLAINTEXT_LEN_MIN = 1;
/**
* The maximum length of the plain text in a findRelated query, assuming that
* plaintext is being provided.
*/
public static final int EDAM_RELATED_PLAINTEXT_LEN_MAX = 131072;
/**
* The maximum number of notes that will be returned from a findRelated()
* query.
*/
public static final int EDAM_RELATED_MAX_NOTES = 25;
/**
* The maximum number of notebooks that will be returned from a findRelated()
* query.
*/
public static final int EDAM_RELATED_MAX_NOTEBOOKS = 1;
/**
* The maximum number of tags that will be returned from a findRelated() query.
*/
public static final int EDAM_RELATED_MAX_TAGS = 25;
/**
* The minimum length, in Unicode characters, of a description for a business
* notebook.
*/
public static final int EDAM_BUSINESS_NOTEBOOK_DESCRIPTION_LEN_MIN = 1;
/**
* The maximum length, in Unicode characters, of a description for a business
* notebook.
*/
public static final int EDAM_BUSINESS_NOTEBOOK_DESCRIPTION_LEN_MAX = 200;
/**
* All business notebook descriptions must match this pattern.
* This excludes control chars or line/paragraph separators.
* The string may not begin or end with whitespace.
*/
public static final String EDAM_BUSINESS_NOTEBOOK_DESCRIPTION_REGEX = "^[^\\p{Cc}\\p{Z}]([^\\p{Cc}\\p{Zl}\\p{Zp}]{0,198}[^\\p{Cc}\\p{Z}])?$";
/**
* Minimum length of a preference name
*/
public static final int EDAM_PREFERENCE_NAME_LEN_MIN = 3;
/**
* Maximum length of a preference name
*/
public static final int EDAM_PREFERENCE_NAME_LEN_MAX = 32;
/**
* Minimum length of a preference value
*/
public static final int EDAM_PREFERENCE_VALUE_LEN_MIN = 1;
/**
* Maximum length of a preference value
*/
public static final int EDAM_PREFERENCE_VALUE_LEN_MAX = 1024;
/**
* Maximum number of name/value pairs allowed
*/
public static final int EDAM_MAX_PREFERENCES = 100;
/**
* Maximum number of values per preference name
*/
public static final int EDAM_MAX_VALUES_PER_PREFERENCE = 250;
/**
* A preference name must match this regex.
*/
public static final String EDAM_PREFERENCE_NAME_REGEX = "^[A-Za-z0-9_.-]{3,32}$";
/**
* A preference value must match this regex.
*/
public static final String EDAM_PREFERENCE_VALUE_REGEX = "^[^\\p{Cc}]{1,1024}$";
/**
* Maximum length of the device identifier string associated with long sessions.
*/
public static final int EDAM_DEVICE_ID_LEN_MAX = 32;
/**
* Regular expression for device identifier strings associated with long sessions.
*/
public static final String EDAM_DEVICE_ID_REGEX = "^[^\\p{Cc}]{1,32}$";
/**
* Maximum length of the device description string associated with long sessions.
*/
public static final int EDAM_DEVICE_DESCRIPTION_LEN_MAX = 64;
/**
* Regular expression for device description strings associated with long sessions.
*/
public static final String EDAM_DEVICE_DESCRIPTION_REGEX = "^[^\\p{Cc}]{1,64}$";
}