1 package org.jahia.content; 2 3 13 14 public class NodeOperationResult { 15 private ObjectKey nodeKey; 16 private String languageCode; 17 private String comment; 18 19 30 public NodeOperationResult (ObjectKey nodeKey, String languageCode, 31 String comment) { 32 this.nodeKey = nodeKey; 33 this.languageCode = languageCode; 34 this.comment = comment; 35 } 36 37 public ObjectKey getNodeKey() { 38 return nodeKey; 39 } 40 public String getLanguageCode() { 41 return languageCode; 42 } 43 public String getComment() { 44 return comment; 45 } 46 47 } | Popular Tags |