-
Documentum: Useful Documentum APIs
Create a new group: create,c,dm_group set,c,l,group_name <group_name> set,c,l,group_display_name <Group Display Name> set,c,l,group_class group set,c,l,owner_name <group_owner_name> set,c,l,description <Group Description> set,c,l,group_admin <group_admin_name> save,c,l Create a new ACL: create,c,dm_acl set,c,l,object_name <acl_name> set,c,l,owner_name dm_dbo set,c,l,description <ACL Description> grant,c,l,’dm_owner’,7 save,c,l Retrieve a group: retrieve,c,dm_group where group_name='<name_of_group>’ Retrieve an ACL: retrieve,c,dm_acl where object_name='<name_of_acl>’ Grant permissions on an ACL: You run the Continue reading
-
Weblogic: Weblogic entropy fix
Here is the line to add to Weblogic for fixing the issue of low entropy: -Djava.security.egd=file:///dev/./urandom Continue reading
-
Documentum DFC: Check DFC version from command line
Here’s how to check the Documentum DFC version from command line: C:\> java DfShowVersion 7.2.0000.0054 Continue reading
-
Java: Abstract Factory Pattern
AbstractFactory Pattern is a sort of super factory pattern. In this example we will create a factory of objects where each factory creates items just as in the regular Factory pattern. /* Class: ItemType.java */ public interface ItemType{ void doSomething(); } Item1.java /* Class: Item1.java */ public class Item1 implements Factory{ @Override public void doSomething(){ Continue reading
-
Java: Factory Pattern
Factory Pattern is one of the most common design patterns. In this example we will create a Factory interface, and concrete classes to implement this interface. /* Class: ItemType.java */ public interface ItemType{ void doSomething(); } Item1.java /* Class: Item1.java */ public class Item1 implements Factory{ @Override public void doSomething(){ System.out.println(“My Item 1.”); } } Continue reading
About Me
Senior Software Engineer professional with over 16 years of success with multiple open source technologies and various Content Management platforms and solutions.
Proven technical abilities through numerous projects involving enterprise web application design and development, application installation, configuration and support, and workflow and collaboration system designs.
- Ability to learn new technologies and platforms quickly and apply them to the task at hand.
- Excellent analytical skills, and strong communication and collaboration abilities.
- Technical emphasis in including but not limited to Java, Ruby on Rails, Documentum and Alfresco
in both Linux and Windows based environments