KickJava   Java API By Example, From Geeks To Geeks.

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


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.NodeOperationResult;
16 import org.jahia.content.ObjectKey;
17
18 /**
19  * <p>Title: Contains the result of the test of a restore version on a
20  * specific content object.</p>
21  * <p>Description: </p>
22  * <p>Copyright: Copyright (c) 2002</p>
23  * <p>Company: </p>
24  * @author Serge Huber
25  * @version 1.0
26  */

27
28 public class RestoreVersionNodeTestResult extends NodeOperationResult {
29
30     public RestoreVersionNodeTestResult (ObjectKey nodeKey, String JavaDoc languageCode,
31                                          String JavaDoc comment) {
32         super(nodeKey, languageCode, comment);
33     }
34 }
Popular Tags