Posts

Showing posts from January, 2026

D2 install

import com.emc.documentum.rest.model.Repository; import com.emc.documentum.rest.view.impl.RepositoryView; import com.emc.documentum.rest.context.ResourceUriBuilder; import com.emc.documentum.rest.http.UriInfo; import com.emc.documentum.rest.view.annotation.DataViewBinding; import java.util.Map; @DataViewBinding(modelType = Repository.class) public class CustomRepositoryView extends RepositoryView { public CustomRepositoryView(Repository data, UriInfo uriInfo, String repositoryName, boolean returnLinks, Map<String, Object> others) { super(data, uriInfo, repositoryName, returnLinks, others); } @Override public void customize() { // Build the link as a template for the client to fill // Refer to Guide Section 7.6.3.14 (Page 222) String templateHref = ResourceUriBuilder.onResource("SubmissionExportController") .asTemplate("submissionReference") .build(); // Inject the li...

spyml

# SmartViewM365 WAR Deployment for SharePoint Integration # This deploys the SharePoint UI component (NOT D2-REST, which is already running) # Grant permissions for tomcat instance directory - name : Set permissions for tomcat instance directory   file :     path : " {{ tomcat_instance_path }} "     owner : " {{ tomcat_user }} "     group : " {{ tomcat_group }} "     mode : " 0755 "     recurse : yes   become : true # Restore seLinux contexts for Tomcat instance - name : Restore seLinux contexts for tomcat instance   command : restorecon -R {{ tomcat_instance_path }}   become : true   no_log : true   changed_when : false # Clean any existing SmartViewM365 deployment before re-deploying # This ensures a fresh deployment without old files interfering - name : Cleanup before deploying SmartViewM365.war   file :     path : " {{ tomcat_instance_path }}/webapps/SmartViewM365.war "     s...