Skip to main content
summaryrefslogtreecommitdiffstats
blob: 19df57778c11f6947b8f36807d0acce860c7305f (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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
/*******************************************************************************
 * Copyright (c) 2005 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 java.util.List;

import org.eclipse.wst.ws.internal.datamodel.Model;
import org.eclipse.wst.ws.internal.model.v10.taxonomy.Taxonomy;

public class FavoritesUserDefUDDIRegistryElement extends FavoritesElement
{
  private List names;
  private List descs;
  private String version;
  private String defaultLogin;
  private String defaultPassword;
  private String inquiryURL;
  private String publishURL;
  private String secureInquiryURL;
  private String securePublishURL;
  private Taxonomy[] taxonomies;

  public String getDefaultLogin()
  {
    return defaultLogin;
  }

  public void setDefaultLogin(String defaultLogin)
  {
    this.defaultLogin = defaultLogin;
  }

  public String getDefaultPassword()
  {
    return defaultPassword;
  }

  public void setDefaultPassword(String defaultPassword)
  {
    this.defaultPassword = defaultPassword;
  }

  public Taxonomy[] getTaxonomies()
  {
    return taxonomies;
  }

  public void setTaxonomies(Taxonomy[] taxonomies)
  {
    this.taxonomies = taxonomies;
  }

  public FavoritesUserDefUDDIRegistryElement(String name, Model model)
  {
    super(name, model);
  }

  public List getDescs()
  {
    return descs;
  }

  public void setDescs(List descs)
  {
    this.descs = descs;
  }

  public String getInquiryURL()
  {
    return inquiryURL;
  }

  public void setInquiryURL(String inquiryURL)
  {
    this.inquiryURL = inquiryURL;
  }

  public List getNames()
  {
    return names;
  }

  public void setNames(List names)
  {
    this.names = names;
  }

  public String getPublishURL()
  {
    return publishURL;
  }

  public void setPublishURL(String publishURL)
  {
    this.publishURL = publishURL;
  }

  public String getSecureInquiryURL()
  {
    return secureInquiryURL;
  }

  public void setSecureInquiryURL(String secureInquiryURL)
  {
    this.secureInquiryURL = secureInquiryURL;
  }

  public String getSecurePublishURL()
  {
    return securePublishURL;
  }

  public void setSecurePublishURL(String securePublishURL)
  {
    this.securePublishURL = securePublishURL;
  }

  public String getVersion()
  {
    return version;
  }

  public void setVersion(String version)
  {
    this.version = version;
  }

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

Back to the top