1 14 package org.jahia.resourcebundle; 15 16 25 public class ResourceBundleDefinition { 26 27 private String resourceBundleID; 28 private String resourceBundleFile; 29 30 public ResourceBundleDefinition( String resourceBundleID, 31 String resourceBundleFile ){ 32 this.resourceBundleID = resourceBundleID; 33 this.resourceBundleFile = resourceBundleFile; 34 } 35 36 41 public String getResourceBundleID(){ 42 return this.resourceBundleID; 43 } 44 45 50 public String getResourceBundleFile(){ 51 return this.resourceBundleFile; 52 } 53 } | Popular Tags |