Package de.elo.ix.client
Class DocVersionC
java.lang.Object
de.elo.ix.client.DocVersionC
- All Implemented Interfaces:
Serializable
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final int
Document versions marked with this flag cannot be deleted.protected int
Length of version comment.protected int
Length of file extension.protected int
Length of version number (like 1.0).static final int
static final int
static final String
This value should be set in DocVersion.uploadResult, if preview creation fails.static final String
URL parameter create date.static final String
URL parameter last access date.static final String
URL parameter last write date.static final String
URL parameter length.static final String
URL parameter offset. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionint
int
int
getLnExt()
int
void
setFLAG_MILESTONE
(int FLAG_MILESTONE) void
setLnComment
(int v) void
setLnExt
(int v) void
setLnVersion
(int v)
-
Field Details
-
UPLOAD_RESULT_ERROR
This value should be set in DocVersion.uploadResult, if preview creation fails.- Since:
- 7.00.026.001
- See Also:
-
URL_PARAM_OFFSET
URL parameter offset. Used to read a file at a particular offset. Do not position offset after the length of the file. Example: String readUrl = docVersion.url + "&" + URL_PARAM_OFFSET + "=" + 123;- See Also:
-
URL_PARAM_LENGTH
URL parameter length. Used to read length bytes from a file. Do not read more bytes than the legnth of the file. Example: String readUrl = docVersion.url + "&" + URL_PARAM_LENGTH + "=" + 123;- See Also:
-
URL_PARAM_CREATE_DATE
URL parameter create date. Used to set the create date of the file. ISO date in UTC timezone. Example: String writeUrl = docVersion.url + "&" + URL_PARAM_CREATE_DATE + "=" + 20010203040506;- See Also:
-
URL_PARAM_LAST_UPDATE
URL parameter last write date. Used to set the last write time of the file. ISO date in UTC timezone. Example: String writeUrl = docVersion.url + "&" + URL_PARAM_LAST_UPDATE + "=" + 20010203040506;- See Also:
-
URL_PARAM_LAST_ACCESS
URL parameter last access date. Used to set the last access time of the file. ISO date in UTC timezone. Example: String writeUrl = docVersion.url + "&" + URL_PARAM_LAST_ACCESS + "=" + 20010203040506;- See Also:
-
FLAG_MILESTONE
public static final int FLAG_MILESTONEDocument versions marked with this flag cannot be deleted.- See Also:
-
TYPE_DOCVERSION
public static final int TYPE_DOCVERSION- Since:
- 9.99.009.001
- See Also:
-
TYPE_ATTACHMENT
public static final int TYPE_ATTACHMENT- Since:
- 9.99.009.001
- See Also:
-
lnComment
protected int lnCommentLength of version comment. -
lnVersion
protected int lnVersionLength of version number (like 1.0). -
lnExt
protected int lnExtLength of file extension.
-
-
Constructor Details
-
DocVersionC
public DocVersionC()
-
-
Method Details
-
getFLAG_MILESTONE
public int getFLAG_MILESTONE() -
setFLAG_MILESTONE
public void setFLAG_MILESTONE(int FLAG_MILESTONE) -
getLnComment
public int getLnComment() -
setLnComment
public void setLnComment(int v) -
getLnExt
public int getLnExt() -
setLnExt
public void setLnExt(int v) -
getLnVersion
public int getLnVersion() -
setLnVersion
public void setLnVersion(int v)
-