KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jahia > services > version > RestoreVersionTestResults


1 //
2
// ____.
3
// __/\ ______| |__/\. _______
4
// __ .____| | \ | +----+ \
5
// _______| /--| | | - \ _ | : - \_________
6
// \\______: :---| : : | : | \________>
7
// |__\---\_____________:______: :____|____:_____\
8
// /_____|
9
//
10
// . . . i n j a h i a w e t r u s t . . .
11
//
12

13 package org.jahia.services.version;
14
15 import org.jahia.content.TreeOperationResult;
16
17 /**
18  * <p>Title: Contains the results of a test of validity for restoration </p>
19  * <p>Description: This class contains the results a complete operation of
20  * test for a restore version on a content object sub tree.</p>
21  * <p>Copyright: Copyright (c) 2002</p>
22  * <p>Company: </p>
23  * @author Serge Huber
24  * @version 1.0
25  */

26
27 public class RestoreVersionTestResults extends TreeOperationResult {
28
29     public RestoreVersionTestResults() {
30     }
31
32     public RestoreVersionTestResults(int initialStatus) {
33         super(initialStatus);
34     }
35 }
Popular Tags