1 package org.jahia.services.version; 2 3 import org.jahia.content.TreeOperationResult; 4 5 /** 6 * <p>Title: Activation test results</p> 7 * <p>Description: This class is used to signal warnings if an activation 8 * wouldn't complete in the case where we couldn't validate through the full 9 * hierarchy due to flags that prohibit that, such as dependencies on sub- 10 * content that hasn't been validated, or missing language entries for 11 * mandatory languages.</p> 12 * <p>Copyright: Copyright (c) 2002</p> 13 * <p>Company: </p> 14 * @author Serge Huber 15 * @version 1.0 16 */ 17 18 public class ActivationTestResults extends TreeOperationResult { 19 20 public ActivationTestResults() { 21 } 22 23 public ActivationTestResults(int initialStatus) { 24 super(initialStatus); 25 } 26 27 }