KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > enterprise > admin > common > JMSDestinationInfo


1 /*
2  * The contents of this file are subject to the terms
3  * of the Common Development and Distribution License
4  * (the License). You may not use this file except in
5  * compliance with the License.
6  *
7  * You can obtain a copy of the license at
8  * https://glassfish.dev.java.net/public/CDDLv1.0.html or
9  * glassfish/bootstrap/legal/CDDLv1.0.txt.
10  * See the License for the specific language governing
11  * permissions and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL
14  * Header Notice in each file and include the License file
15  * at glassfish/bootstrap/legal/CDDLv1.0.txt.
16  * If applicable, add the following below the CDDL Header,
17  * with the fields enclosed by brackets [] replaced by
18  * you own identifying information:
19  * "Portions Copyrighted [year] [name of copyright owner]"
20  *
21  * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
22  */

23
24 package com.sun.enterprise.admin.common;
25
26 import java.io.Serializable JavaDoc;
27 import java.util.Properties JavaDoc;
28
29 import com.sun.enterprise.admin.util.ArgChecker;
30 import com.sun.enterprise.admin.util.StringValidator;
31
32 /**
33     A class representing the <code> information </code> on one JMS destination
34     created by the JMS provider.
35
36    @author Isa Hashim
37     @version 1.0
38 */

39
40 public class JMSDestinationInfo implements Serializable JavaDoc
41 {
42     private String JavaDoc destName,
43             destType;
44     private Properties JavaDoc attrs;
45
46     public JMSDestinationInfo (String JavaDoc destName, String JavaDoc destType)
47     {
48         ArgChecker.checkValid(destName, "destName",
49                               StringValidator.getInstance()); //noi18n
50
ArgChecker.checkValid(destType, "destType",
51                               StringValidator.getInstance()); //noi18n
52

53         this.destName = destName;
54         this.destType = destType;
55         this.attrs = new Properties JavaDoc();
56     }
57
58     public JMSDestinationInfo (String JavaDoc destName, String JavaDoc destType, Properties JavaDoc attrs)
59     {
60         this(destName, destType);
61         ArgChecker.checkValid(attrs, "attrs"); //noi18n
62
this.attrs = attrs;
63     }
64
65     public String JavaDoc getDestinationName() {
66         return (destName);
67     }
68
69     public String JavaDoc getDestinationType() {
70         return (destType);
71     }
72
73     public Properties JavaDoc getAttrs() {
74         return (attrs);
75     }
76
77     public String JavaDoc toString() {
78         StringBuffer JavaDoc sb = new StringBuffer JavaDoc();
79         sb.append(destName);
80         sb.append(' ');
81         sb.append(destType);
82         sb.append(' ');
83         sb.append(attrs);
84         return sb.toString();
85     }
86 }
87
Popular Tags