]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - runtime/org.argeo.slc.support.jcr/src/main/java/org/argeo/slc/jcr/SlcTypes.java
+ clean repo model
[gpl/argeo-slc.git] / runtime / org.argeo.slc.support.jcr / src / main / java / org / argeo / slc / jcr / SlcTypes.java
index 76f56fe3ece3b6879adcfe59a6c6624a05f3e7cb..5cb6a1361c43fa3b950b765491020e7a611e741b 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2007-2012 Mathieu Baudier
+ * Copyright (C) 2007-2012 Argeo GmbH
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -18,6 +18,9 @@ package org.argeo.slc.jcr;
 /** JCR node types used by SLC */
 public interface SlcTypes {
 
+       public final static String SLC_NAME_VERSION = "slc:nameVersion";
+       public final static String SLC_CATEGORIZED_NAME_VERSION = "slc:categorizedNameVersion";
+
        public final static String SLC_AGENT_FACTORY = "slc:agentFactory";
        public final static String SLC_AGENT = "slc:agent";
        public final static String SLC_MODULE = "slc:module";
@@ -35,7 +38,7 @@ public interface SlcTypes {
        public final static String SLC_CHECK = "slc:check";
        public final static String SLC_PROPERTY = "slc:property";
        public final static String SLC_DIFF_RESULT = "slc:diffResult";
-       
+
        // Node types used for user defined and managed result UI tree
        public final static String SLC_MY_RESULT_ROOT_FOLDER = "slc:myResultRootFolder";
        public final static String SLC_RESULT_FOLDER = "slc:resultFolder";
@@ -65,8 +68,16 @@ public interface SlcTypes {
        public final static String SLC_REQUIRED_BUNDLE = "slc:requiredBundle";
        public final static String SLC_FRAGMENT_HOST = "slc:fragmentHost";
 
+       // Distribution management
+       // public final static String SLC_CATEGORY = "slc:category";
+       public final static String SLC_MODULAR_DISTRIBUTION_BASE = "slc:modularDistributionBase";
+       public final static String SLC_MODULAR_DISTRIBUTION = "slc:modularDistribution";
+       public final static String SLC_MODULE_COORDINATES = "slc:moduleCoordinates";
+
        // origin
        public final static String SLC_KNOWN_ORIGIN = "slc:knownOrigin";
        public final static String SLC_PROXIED = "slc:proxied";
 
+       // rpm
+       public final static String SLC_RPM = "slc:rpm";
 }