Interface IContentObjectValue

All Superinterfaces:
ContentObjectValue, ch.ivyteam.ivy.cm.IContentManagementEntity

@Deprecated(since="9.4", forRemoval=true) public interface IContentObjectValue extends ContentObjectValue, ch.ivyteam.ivy.cm.IContentManagementEntity
Deprecated, for removal: This API element is subject to removal in a future version.
API:
This is a public API.
  • Method Details

    • getLanguage

      @Deprecated(since="9.4", forRemoval=true) default Locale getLanguage()
      Deprecated, for removal: This API element is subject to removal in a future version.
      API:
      This public API is available in Java.
    • getContentObject

      @Deprecated(since="9.4", forRemoval=true) default IContentObject getContentObject()
      Deprecated, for removal: This API element is subject to removal in a future version.
      API:
      This public API is available in Java.
    • getContentAsString

      @Deprecated(since="9.4", forRemoval=true) default String getContentAsString()
      Deprecated, for removal: This API element is subject to removal in a future version.
      use ContentObjectValue.read().string() instead
      Migration Example: ivy.cms.findContentObjectValue("/my/content", Locale.ENGLISH).getContentAsString() ==> ivy.cm.findValue("/my/content").get(Locale.ENGLISH).read().string()
      API:
      This public API is available in Java.
    • getContentAsCharacterStream

      @Deprecated(since="9.4", forRemoval=true) default Reader getContentAsCharacterStream()
      Deprecated, for removal: This API element is subject to removal in a future version.
      API:
      This public API is available in Java.
    • getContentAsByteArray

      @Deprecated(since="9.4", forRemoval=true) default byte[] getContentAsByteArray()
      Deprecated, for removal: This API element is subject to removal in a future version.
      API:
      This public API is available in Java.
    • getContentAsBinaryStream

      @Deprecated(since="9.4", forRemoval=true) default InputStream getContentAsBinaryStream()
      Deprecated, for removal: This API element is subject to removal in a future version.
      use ContentObjectValue.read().inputStream() instead
      Migration Example: ivy.cms.findContentObjectValue("/my/content", Locale.ENGLISH).getContentAsBinaryStream() ==> ivy.cm.findValue("/my/content").get(Locale.ENGLISH).read().inputStream()
      API:
      This public API is available in Java.
    • setContent

      @Deprecated(since="9.4", forRemoval=true) default void setContent(String content)
      Deprecated, for removal: This API element is subject to removal in a future version.
      API:
      This public API is available in Java.
    • getDescription

      @Deprecated(since="9.3", forRemoval=true) default String getDescription()
      Deprecated, for removal: This API element is subject to removal in a future version.
      not supported anymore. always returns an empty string.
      API:
      This public API is available in Java.
    • setDescription

      @Deprecated(since="9.3", forRemoval=true) default void setDescription(String description)
      Deprecated, for removal: This API element is subject to removal in a future version.
      not supported anymore. calling this method has no effect.
      API:
      This public API is available in Java.
    • setDescription

      @Deprecated(since="9.3", forRemoval=true) default void setDescription(String description, String user)
      Deprecated, for removal: This API element is subject to removal in a future version.
      not supported anymore. calling this method has no effect.
      API:
      This public API is available in Java.
    • setLanguage

      @Deprecated(since="9.3", forRemoval=true) default void setLanguage(Locale language)
      Deprecated, for removal: This API element is subject to removal in a future version.
      not supported anymore. you can not change the language. calling this method has no effect.
      API:
      This public API is available in Java.
    • setLanguage

      @Deprecated(since="9.3", forRemoval=true) default void setLanguage(Locale language, String user)
      Deprecated, for removal: This API element is subject to removal in a future version.
      API:
      This public API is available in Java.
    • getValidFrom

      @Deprecated(since="9.3", forRemoval=true) default Date getValidFrom()
      Deprecated, for removal: This API element is subject to removal in a future version.
      not supported anymore. always returns current date.
      API:
      This public API is available in Java.
    • setValidFrom

      @Deprecated(since="9.3", forRemoval=true) default void setValidFrom(Date validFrom, String user)
      Deprecated, for removal: This API element is subject to removal in a future version.
      not supported anymore. calling this method has no effect.
      API:
      This public API is available in Java.
    • getValidTo

      @Deprecated(since="9.3", forRemoval=true) default Date getValidTo()
      Deprecated, for removal: This API element is subject to removal in a future version.
      not supported anymore. always returns current date.
      API:
      This public API is available in Java.
    • setValidTo

      @Deprecated(since="9.3", forRemoval=true) default void setValidTo(Date validTo, String user)
      Deprecated, for removal: This API element is subject to removal in a future version.
      not supported anymore. calling this method has no effect.
      API:
      This public API is available in Java.
    • getChanged

      @Deprecated(since="9.3", forRemoval=true) default Date getChanged()
      Deprecated, for removal: This API element is subject to removal in a future version.
      not supported anymore. always returns current date.
      API:
      This public API is available in Java.
    • getChangedBy

      @Deprecated(since="9.3", forRemoval=true) default String getChangedBy()
      Deprecated, for removal: This API element is subject to removal in a future version.
      not supported anymore. always returns empty string.
      API:
      This public API is available in Java.
    • getGuid

      @Deprecated(since="9.3", forRemoval=true) default String getGuid()
      Deprecated, for removal: This API element is subject to removal in a future version.
      not supported anymore. always returns empty string.
      API:
      This public API is available in Java.
    • getContentObjectType

      @Deprecated(since="9.4", forRemoval=true) default IContentObjectType getContentObjectType()
      Deprecated, for removal: This API element is subject to removal in a future version.
      do not use anymore.
      API:
      This public API is available in Java.
    • isDefault

      @Deprecated(since="9.3", forRemoval=true) default boolean isDefault()
      Deprecated, for removal: This API element is subject to removal in a future version.
      not supported anymore. always returns false.
      API:
      This public API is available in Java.
    • setDefault

      @Deprecated(since="9.3", forRemoval=true) default void setDefault(boolean isDefault)
      Deprecated, for removal: This API element is subject to removal in a future version.
      not supported anymore. calling this method has no effect.
      API:
      This public API is available in Java.
    • setDefault

      @Deprecated(since="9.3", forRemoval=true) default void setDefault(boolean isDefault, String user)
      Deprecated, for removal: This API element is subject to removal in a future version.
      API:
      This public API is available in Java.
    • getPropertyString

      @Deprecated(since="9.3", forRemoval=true) default String getPropertyString()
      Deprecated, for removal: This API element is subject to removal in a future version.
      not supported anymore. always returns an empty string.
      API:
      This public API is available in Java.
    • setPropertyString

      @Deprecated(since="9.3", forRemoval=true) default void setPropertyString(String propertyString, String user)
      Deprecated, for removal: This API element is subject to removal in a future version.
      not supported anymore. calling this method has no effect.
      API:
      This public API is available in Java.
    • setContent

      @Deprecated(since="9.3", forRemoval=true) default void setContent(String content, String user)
      Deprecated, for removal: This API element is subject to removal in a future version.
      API:
      This public API is available in Java.
    • setContent

      @Deprecated(since="9.4", forRemoval=true) default void setContent(InputStream content, int contentLength)
      Deprecated, for removal: This API element is subject to removal in a future version.
      API:
      This public API is available in Java.
    • setContent

      @Deprecated(since="9.3", forRemoval=true) default void setContent(InputStream content, int contentLength, String user)
      Deprecated, for removal: This API element is subject to removal in a future version.
      API:
      This public API is available in Java.
    • setContent

      @Deprecated(since="9.4", forRemoval=true) default void setContent(Reader content, int contentLength)
      Deprecated, for removal: This API element is subject to removal in a future version.
      API:
      This public API is available in Java.
    • setContent

      @Deprecated(since="9.3", forRemoval=true) default void setContent(Reader content, int contentLength, String user)
      Deprecated, for removal: This API element is subject to removal in a future version.
      API:
      This public API is available in Java.
    • importContentFromFile

      @Deprecated(since="9.4", forRemoval=true) default void importContentFromFile(File file, String encoding)
      Deprecated, for removal: This API element is subject to removal in a future version.
      API:
      This public API is available in Java.
    • importContentFromFile

      @Deprecated(since="9.3", forRemoval=true) default void importContentFromFile(File file, String encoding, String user) throws IOException
      Deprecated, for removal: This API element is subject to removal in a future version.
      Throws:
      IOException
      API:
      This public API is available in Java.
    • exportContentToFile

      @Deprecated(since="9.4", forRemoval=true) default void exportContentToFile(File file, String encoding)
      Deprecated, for removal: This API element is subject to removal in a future version.
      API:
      This public API is available in Java.
    • delete

      @Deprecated(since="9.3", forRemoval=true) default void delete(String user)
      Deprecated, for removal: This API element is subject to removal in a future version.
      API:
      This public API is available in Java.
    • getContentVersionHashCode

      @Deprecated(since="9.4", forRemoval=true) int getContentVersionHashCode()
      Deprecated, for removal: This API element is subject to removal in a future version.
      do not use anymore
      API:
      This public API is available in Java.
    • isValid

      @Deprecated(since="9.4", forRemoval=true) default boolean isValid()
      Deprecated, for removal: This API element is subject to removal in a future version.
      not supported anymore. returns always true.
      API:
      This public API is available in Java.