uima-ducc-transport/src/main/java/org/apache/uima/ducc/transport/event/common/history/IHistoryPersistenceManager.java [328:367]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            public boolean isPrivate() { return true; }    		
            public boolean isMeta()    { return true; }    		
    	},


        // The order of the primary keys is important here as the Db assigns semantics to the first key in a compound PK
        user {
            public String pname()         { return "user"; }
            public Type type()            { return Type.String; }
            public boolean isPrimaryKey() { return true; }
        },

        jclass {
            public String pname()         { return "class"; }
            public Type type()            { return Type.String; }
            public boolean isIndex()      { return true; }
        },
      
        ducc_id {
            public Type type()            { return Type.Long; }
            public boolean isPrimaryKey() { return true; }
        },

        submission_time {
            public String pname()         { return "submission_time"; }
            public Type type()            { return Type.Long; }
            public boolean isIndex()      { return true; }
        },

        duration {
            public String pname()         { return "duration"; }
            public Type type()            { return Type.Long; }
            public boolean isIndex()      { return true; }
        },

        memory {
            public String pname()         { return "memory"; }
            public Type type()            { return Type.Integer; }
            public boolean isIndex()      { return true; }
        },
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



uima-ducc-transport/src/main/java/org/apache/uima/ducc/transport/event/common/history/IHistoryPersistenceManager.java [475:514]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            public boolean isPrivate() { return true; }    		
            public boolean isMeta()    { return true; }    		
    	},


        // The order of the primary keys is important here as the Db assigns semantics to the first key in a compound PK
        user {
            public String pname()         { return "user"; }
            public Type type()            { return Type.String; }
            public boolean isPrimaryKey() { return true; }
        },

        jclass {
            public String pname()         { return "class"; }
            public Type type()            { return Type.String; }
            public boolean isIndex()    { return true; }
        },

        ducc_id {
            public Type type()            { return Type.Long; }
            public boolean isPrimaryKey() { return true; }
        },

        submission_time {
            public String pname()         { return "submission_time"; }
            public Type type()            { return Type.Long; }
            public boolean isIndex()      { return true; }
        },

        duration {
            public String pname()         { return "duration"; }
            public Type type()            { return Type.Long; }
            public boolean isIndex()      { return true; }
        },

        memory {
            public String pname()         { return "memory"; }
            public Type type()            { return Type.Integer; }
            public boolean isIndex()      { return true; }
        },
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



