1 13 package info.magnolia.repository; 14 15 19 public class RepositoryNameMap { 20 21 22 private String repositoryName; 23 24 private String workspaceName; 25 26 30 public RepositoryNameMap(String repositoryName, String workspaceName) { 31 this.repositoryName = repositoryName; 32 this.workspaceName = workspaceName; 33 } 34 35 public String getRepositoryName() { 36 return this.repositoryName; 37 } 38 39 public String getWorkspaceName() { 40 return this.workspaceName; 41 } 42 43 } 44 | Popular Tags |