Skip to main content
summaryrefslogtreecommitdiffstats
blob: b86d5aecb2ee92825b78e0316711e03f88113ae2 (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
/*******************************************************************************
 * Copyright (c) 2001, 2007 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/

package org.eclipse.wst.ws.internal.explorer.platform.uddi.constants;

public class UDDIModelConstants
{
  // Registries under UDDIMain.
  public static final String REL_REGISTRIES = "registries";

  // Executed Queries folder under a registry.
  public static final String REL_QUERIES_PARENT = "queriesParent";

  // Published Businesses folder under a registry.
  public static final String REL_PUBLISHED_BUSINESSES_PARENT = "publishedBusinessesParent";

  // Published Services folder under a registry.
  public static final String REL_PUBLISHED_SERVICES_PARENT = "publishedServicesParent";

  // Published Service interfaces folder under a registry.
  public static final String REL_PUBLISHED_SERVICE_INTERFACES_PARENT = "publishedServiceInterfacesParent";

  // Queries under the Queries folder.
  public static final String REL_QUERIES = "queries";
  public static final String INITIAL_RESULTS = "initialResults";
  public static final String QUERY_TYPE = "queryType";
  public static final String SUBQUERY_TRANSFER_TARGET = "subQueryTransferTarget";

  // Objects under a Query node.
  public static final String REL_QUERY_RESULTS = "queryResults";

  // Categories
  public static final String REL_SUBCATEGORIES = "subCategories";

  // Published items inside the Published items folder.
  public static final String REL_PUBLISHED_ITEMS = "publishedItems";

  // Businesses
  public static final String IS_BUSINESS_OWNED = "isBusinessOwned";
}

Back to the top