Skip to main content
summaryrefslogtreecommitdiffstats
blob: 5eca6ac92ac46744ce38d9d6b6f7feb1f2d57437 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/*******************************************************************************
 * Copyright (c) 2001, 2004 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/

package org.eclipse.wst.wsdl.validation.internal.xml;

/**
 * A container to hold the entity information until an XML catalog is
 * to be initialized.
 */
public class XMLCatalogEntityHolder
{
  private String publicId;
  private String systemId;
  
  /**
   * Constructor.
   * 
   * @param publicId The public id of the entity.
   * @param systemId The system id of the entity.
   */
  public XMLCatalogEntityHolder(String publicId, String systemId)
  {
    this.publicId = publicId;
    this.systemId = systemId;
  }
  
  /**
   * Returns the public id of the entity.
   * @return The public id of the entity.
   */
  public String getPublicId()
  {
    return publicId;
  }
  
  /**
   * Returns the system id of the entity.
   * @return The system id of the entity.
   */
  public String getSystemId()
  {
    return systemId;
  }
}

Back to the top