You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scout-dev@ws.apache.org by an...@apache.org on 2004/12/21 19:24:55 UTC

svn commit: r122975 - /webservices/scout/trunk/modules/scout/src/java/org/apache/ws/scout/registry/infomodel/SlotImpl.java

Author: anil
Date: Tue Dec 21 10:24:54 2004
New Revision: 122975

URL: http://svn.apache.org/viewcvs?view=rev&rev=122975
Log:
Implement SlotImpl of Jaxr API.

Added:
   webservices/scout/trunk/modules/scout/src/java/org/apache/ws/scout/registry/infomodel/SlotImpl.java

Added: webservices/scout/trunk/modules/scout/src/java/org/apache/ws/scout/registry/infomodel/SlotImpl.java
Url: http://svn.apache.org/viewcvs/webservices/scout/trunk/modules/scout/src/java/org/apache/ws/scout/registry/infomodel/SlotImpl.java?view=auto&rev=122975
==============================================================================
--- (empty file)
+++ webservices/scout/trunk/modules/scout/src/java/org/apache/ws/scout/registry/infomodel/SlotImpl.java	Tue Dec 21 10:24:54 2004
@@ -0,0 +1,72 @@
+/**
+ *
+ * Copyright 2004 The Apache Software Foundation
+ *
+ *  Licensed under the Apache License, Version 2.0 (the "License");
+ *  you may not use this file except in compliance with the License.
+ *  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License.
+ */
+package org.apache.ws.scout.registry.infomodel;
+
+ import javax.xml.registry.infomodel.Slot;
+ import javax.xml.registry.JAXRException;
+ import javax.xml.registry.LifeCycleManager;
+ import java.util.Collection;
+
+ /**
+  * Implements Jaxr API
+  *
+  * @author <ma...@apache.org>Anil Saldhana
+  * @since Nov 20, 2004
+  */
+ public class SlotImpl implements Slot
+ {
+     private String slotType;
+     private String name;
+     private Collection values;
+     private LifeCycleManager lcm;
+
+     public SlotImpl(LifeCycleManager lifeCycleManager)
+     {
+         lcm = lifeCycleManager;
+     }
+     public String getName() throws JAXRException
+     {
+       return name;
+     }
+
+     public String getSlotType() throws JAXRException
+     {
+        return slotType;
+     }
+
+     public Collection getValues() throws JAXRException
+     {
+         return values;
+     }
+
+     public void setName(String s) throws JAXRException
+     {
+         name = s;
+     }
+
+     public void setSlotType(String s) throws JAXRException
+     {
+         slotType = s;
+     }
+
+     public void setValues(Collection collection) throws JAXRException
+     {
+         values = collection;
+     }
+ }
+
+

---------------------------------------------------------------------
To unsubscribe, e-mail: scout-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: scout-dev-help@ws.apache.org