1   /* Copyright 2002-2026 CS GROUP
2    * Licensed to CS GROUP (CS) under one or more
3    * contributor license agreements.  See the NOTICE file distributed with
4    * this work for additional information regarding copyright ownership.
5    * CS licenses this file to You under the Apache License, Version 2.0
6    * (the "License"); you may not use this file except in compliance with
7    * the License.  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  package org.orekit.files.ccsds.ndm.odm;
19  
20  import org.orekit.files.ccsds.definitions.CcsdsFrameMapper;
21  import org.orekit.files.ccsds.definitions.TimeSystem;
22  import org.orekit.files.ccsds.section.Metadata;
23  import org.orekit.frames.Frame;
24  
25  /** This class gathers the meta-data present in the Orbital Data Message (ODM).
26   * @author sports
27   * @since 6.1
28   */
29  public class OdmMetadata extends Metadata {
30  
31      /** Spacecraft name for which the orbit state is provided. */
32      private String objectName;
33  
34      /**
35       * Simple constructor.
36       *
37       * @param defaultTimeSystem default time system (may be null)
38       * @param frameMapper       for creating a {@link Frame}.
39       * @since 13.1.5
40       */
41      protected OdmMetadata(final TimeSystem defaultTimeSystem,
42                            final CcsdsFrameMapper frameMapper) {
43          super(defaultTimeSystem, frameMapper);
44      }
45  
46      /** Get the spacecraft name for which the orbit state is provided.
47       * @return the spacecraft name
48       */
49      public String getObjectName() {
50          return objectName;
51      }
52  
53      /** Set the spacecraft name for which the orbit state is provided.
54       * @param objectName the spacecraft name to be set
55       */
56      public void setObjectName(final String objectName) {
57          refuseFurtherComments();
58          this.objectName = objectName;
59      }
60  
61  }
62  
63  
64