View Javadoc

1   /**
2    *
3    * Copyright 2003-2004 The Apache Software Foundation
4    *
5    *  Licensed under the Apache License, Version 2.0 (the "License");
6    *  you may not use this file except in compliance with the License.
7    *  You may obtain a copy of the License at
8    *
9    *     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   */
17  
18  //
19  // This source code implements specifications defined by the Java
20  // Community Process. In order to remain compliant with the specification
21  // DO NOT add / change / or delete method signatures!
22  //
23  package javax.xml.registry.infomodel;
24  
25  import java.util.Date;
26  import javax.xml.registry.JAXRException;
27  
28  /**
29   * @version $Revision$ $Date$
30   */
31  public interface RegistryEntry extends RegistryObject, Versionable {
32      public static final int STABILITY_DYNAMIC = 0;
33      public static final int STABILITY_DYNAMIC_COMPATIBLE = 1;
34      public static final int STABILITY_STATIC = 2;
35  
36      public static final int STATUS_SUBMITTED = 0;
37      public static final int STATUS_APPROVED = 1;
38      public static final int STATUS_DEPRECATED = 2;
39      public static final int STATUS_WITHDRAWN = 3;
40  
41      Date getExpiration() throws JAXRException;
42  
43      int getStability() throws JAXRException;
44  
45      int getStatus() throws JAXRException;
46  
47      void setExpiration(Date expiration) throws JAXRException;
48  
49      void setStability(int stability) throws JAXRException;
50  }