Skip to main content
summaryrefslogtreecommitdiffstats
blob: 81e8beb8d0a29d4e4feb42329a9ee1bf664172e3 (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
/*******************************************************************************
 * Copyright (c) 2002, 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.ws.internal.explorer.platform.favorites.datamodel;

import org.apache.wsil.Service;
import org.eclipse.wst.ws.internal.datamodel.Model;
import org.eclipse.wst.ws.internal.parser.favorites.FavoritesUDDIServiceInterface;

public class FavoritesUDDIServiceInterfaceElement extends FavoritesElement {

  private FavoritesUDDIServiceInterface uddiSerInt_;

  public FavoritesUDDIServiceInterfaceElement(String name, Model model, Service service) {
    super(name, model);
    uddiSerInt_ = new FavoritesUDDIServiceInterface();
    uddiSerInt_.setService(service);
  }

  public Service getService() {
    return uddiSerInt_.getService();
  }

  public String getName() {
    return uddiSerInt_.getName();
  }

  public String getInquiryURL() {
    return uddiSerInt_.getInquiryURL();
  }

  public String getServiceInterfaceKey() {
    return uddiSerInt_.getServiceInterfaceKey();
  }

  public String toString() {
    return getName();
  }
}

Back to the top