Package weave.config.tables

Examples of weave.config.tables.HierarchyTable


        String tablePrefix = "weave";
        String table_meta_private = tablePrefix + SUFFIX_META_PRIVATE;
        String table_meta_public = tablePrefix + SUFFIX_META_PUBLIC;
        String table_hierarchy = tablePrefix + SUFFIX_HIERARCHY;

        hierarchy = new HierarchyTable(connectionConfig, dbInfo.schema, table_hierarchy);
        public_metadata = new MetadataTable(connectionConfig, dbInfo.schema, table_meta_public, PublicMetadata.ENTITYTYPE);
        private_metadata = new MetadataTable(connectionConfig, dbInfo.schema, table_meta_private, null);
       
        weave.config.DeprecatedConfig.migrateManifestData(conn, dbInfo.schema, table_meta_public);
      }
View Full Code Here

TOP

Related Classes of weave.config.tables.HierarchyTable

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.