Package com.filenet.api.core

Examples of com.filenet.api.core.Versionable


            "The version series {0} for deleted document [{1}] is NOT found",
            new Object[] {de.get_VersionSeriesId(), de.get_SourceObjectId()});
        return true;
      }
    } else {
      Versionable versionable = null;
      if (object instanceof VersionSeries) {
        versionable = ((VersionSeries) object).get_CurrentVersion();
      } else if (object instanceof Document) {
        versionable = ((Document) object).get_CurrentVersion();
      }
      return versionable != null
          && VersionStatus.RELEASED.equals(versionable.get_VersionStatus());
    }
  }
View Full Code Here

TOP

Related Classes of com.filenet.api.core.Versionable

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.