01: /**
02: * Licensed to the Apache Software Foundation (ASF) under one or more
03: * contributor license agreements. See the NOTICE file distributed with
04: * this work for additional information regarding copyright ownership.
05: * The ASF licenses this file to You under the Apache License, Version 2.0
06: * (the "License"); you may not use this file except in compliance with
07: * the License. You may obtain a copy of the License at
08: *
09: * http://www.apache.org/licenses/LICENSE-2.0
10: *
11: * Unless required by applicable law or agreed to in writing, software
12: * distributed under the License is distributed on an "AS IS" BASIS,
13: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14: * See the License for the specific language governing permissions and
15: * limitations under the License.
16: */package org.apache.openejb.config;
17:
18: import java.util.Properties;
19:
20: public interface Service {
21: /**
22: * Gets the value of the properties property.
23: * <p/>
24: * <p/>
25: * This accessor method returns a reference to the live Properties Object,
26: * not a snapshot. Therefore any modification you make to the
27: * returned Properties will be present inside the JAXB object.
28: * This is why there is not a <CODE>set</CODE> method for the properties property.
29: * <p/>
30: * <p/>
31: * For example, to add a new value, do as follows:
32: * <pre>
33: * getProperties().setProperty(key, value);
34: * </pre>
35: * <p/>
36: * <p/>
37: * <p/>
38: */
39: public Properties getProperties();
40:
41: public String getId();
42:
43: public void setId(String id);
44:
45: public String getJar();
46:
47: public void setJar(String jar);
48:
49: public String getProvider();
50:
51: public void setProvider(String provider);
52:
53: public String getType();
54:
55: public void setType(String type);
56: }
|