001: /*
002: * BEGIN_HEADER - DO NOT EDIT
003: *
004: * The contents of this file are subject to the terms
005: * of the Common Development and Distribution License
006: * (the "License"). You may not use this file except
007: * in compliance with the License.
008: *
009: * You can obtain a copy of the license at
010: * https://open-esb.dev.java.net/public/CDDLv1.0.html.
011: * See the License for the specific language governing
012: * permissions and limitations under the License.
013: *
014: * When distributing Covered Code, include this CDDL
015: * HEADER in each file and include the License file at
016: * https://open-esb.dev.java.net/public/CDDLv1.0.html.
017: * If applicable add the following below this CDDL HEADER,
018: * with the fields enclosed by brackets "[]" replaced with
019: * your own identifying information: Portions Copyright
020: * [year] [name of copyright owner]
021: */
022:
023: /*
024: * @(#)ConfigData.java
025: * Copyright 2004-2007 Sun Microsystems, Inc. All Rights Reserved.
026: *
027: * END_HEADER - DO NOT EDIT
028: */
029: package com.sun.jbi.engine.sequencing.util;
030:
031: /**
032: * Thi class has all the configuration information.
033: *
034: * @author Sun Microsystems, Inc.
035: */
036: public class ConfigData {
037: /**
038: *
039: */
040:
041: /**
042: *
043: */
044: public static final String LOG_FILE = "sequencing.log";
045:
046: /**
047: *
048: */
049:
050: /**
051: *
052: */
053: public static final String CONFIG_FILE_NAME = "servicelist.xml";
054:
055: /**
056: *
057: */
058:
059: /**
060: *
061: */
062: public static final String SCHEMA_FILE = "servicelist.xsd";
063:
064: /**
065: *
066: */
067:
068: /**
069: *
070: */
071: public static final String APPLICATIONS_FOLDER = "applications";
072:
073: /**
074: *
075: */
076:
077: /**
078: *
079: */
080: public static final String SERVICELIST = "service-list";
081:
082: /**
083: *
084: */
085:
086: /**
087: *
088: */
089: public static final String SERVICE = "service";
090:
091: /**
092: *
093: */
094:
095: /**
096: *
097: */
098: public static final String LIST_SERVICE = "list-service";
099:
100: /**
101: *
102: */
103:
104: /**
105: *
106: */
107: public static final String SERVICE_NAME = "service-name";
108:
109: /**
110: *
111: */
112:
113: /**
114: *
115: */
116: public static final String NAMESPACE_URI = "namespace-uri";
117:
118: /**
119: *
120: */
121:
122: /**
123: *
124: */
125: public static final String LOCAL_PART = "local-part";
126:
127: /**
128: *
129: */
130:
131: /**
132: *
133: */
134: public static final String LIST_OPERATION = "list-operation";
135:
136: /**
137: *
138: */
139:
140: /**
141: *
142: */
143: public static final String SERVICENAME = "name";
144:
145: /**
146: *
147: */
148:
149: /**
150: *
151: */
152: public static final String SERVICE_LOCALNAME = "name";
153:
154: /**
155: *
156: */
157:
158: /**
159: *
160: */
161: public static final String SERVICE_NAMESPACE = "namespace";
162:
163: /**
164: *
165: */
166:
167: /**
168: *
169: */
170: public static final String SERVICEID = "service-id";
171:
172: /**
173: *
174: */
175:
176: /**
177: *
178: */
179: public static final String SERVICELIST_DESCRIPTION = "list-description";
180:
181: /**
182: *
183: */
184:
185: /**
186: *
187: */
188: public static final String SERVICELIST_OPERATION = "list-operation";
189:
190: /**
191: *
192: */
193:
194: /**
195: *
196: */
197: public static final String SERVICE_DESCRIPTION = "description";
198:
199: /**
200: *
201: */
202:
203: /**
204: *
205: */
206: public static final String TIMEOUT = "timeout";
207:
208: /**
209: *
210: */
211:
212: /**
213: *
214: */
215: public static final String OPERATION = "operation";
216:
217: /**
218: *
219: */
220:
221: /**
222: *
223: */
224: public static final String OPERATION_NAMESPACE = "operation-namespace";
225:
226: /**
227: *
228: */
229:
230: /**
231: *
232: */
233: public static final String SERVICELIST_OPERATION_NAMESPACE = "list-operation-namespace";
234:
235: /**
236: *
237: */
238:
239: /**
240: *
241: */
242: public static final String SERVICELISTATTR = "list-attributes";
243:
244: /**
245: * Service list local name.
246: */
247: public static final String SERVICELISTNAME = "service-name";
248:
249: /**
250: * Namespace for tag for servicelist namespace.
251: */
252: public static final String SERVICELISTNAMESPACE = "service-namespace";
253:
254: /**
255: *
256: */
257:
258: /**
259: *
260: */
261: public static final String LOCAL_ENDPOINT = "localendpoint";
262:
263: /**
264: *
265: */
266:
267: /**
268: *
269: */
270: public static final String LIST_MEP = "list-mep";
271:
272: /**
273: *
274: */
275:
276: /**
277: *
278: */
279: public static final String SERVICE_MEP = "mep";
280:
281: /**
282: *
283: */
284: /**
285: *
286: */
287:
288: /**
289: *
290: */
291: public static final String LIST_ENDPOINT = "endpoint-name";
292:
293: /**
294: *
295: */
296: /**
297: *
298: */
299:
300: /**
301: *
302: */
303: public static final String SERVICE_ENDPOINT = "endpoint-name";
304:
305: /**
306: *
307: */
308: /**
309: *
310: */
311:
312: /**
313: *
314: */
315: public static final String SEQ_RESOLVER_ID = "SEQ_RESOLVER_ID";
316:
317: /**
318: *
319: */
320: /**
321: *
322: */
323:
324: /**
325: *
326: */
327: public static final String REQUEST_SEQ_ID = "REQUEST_SEQ_ID";
328:
329: /**
330: *
331: */
332: /**
333: *
334: */
335:
336: /**
337: *
338: */
339: public static final int REQUEST_TYPE = 0;
340:
341: /**
342: *
343: */
344: /**
345: *
346: */
347:
348: /**
349: *
350: */
351: public static final int RESPONSE_TYPE = 1;
352:
353: /**
354: * The name of the jbi schema file for jbi.xml in an SU.
355: */
356: public static final String JBI_SCHEMA_FILE = "jbi.xsd";
357:
358: /**
359: * Deployment descriptor file
360: */
361: public static final String DEPLOY_DESCRIPTOR = "jbi.xml";
362:
363: /**
364: *
365: */
366: /**
367: *
368: */
369:
370: /**
371: *
372: */
373: public static final String RESPONSE_SEQ_ID = "RESPONSE_SEQ_ID";
374:
375: /**
376: * Describes the list interface in the XML document
377: */
378: public static final String LIST_INTERFACE = "list-interface";
379:
380: /**
381: * Describes the interface under service nodes in a document.
382: */
383: public static final String INTERFACE = "interface-name";
384: }
|