1   /* Copyright 2002-2025 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.TimeSystem;
21  import org.orekit.files.ccsds.section.Metadata;
22  
23  /** This class gathers the meta-data present in the Orbital Data Message (ODM).
24   * @author sports
25   * @since 6.1
26   */
27  public class OdmMetadata extends Metadata {
28  
29      /** Spacecraft name for which the orbit state is provided. */
30      private String objectName;
31  
32      /** Simple constructor.
33       * @param defaultTimeSystem default time system (may be null)
34       */
35      protected OdmMetadata(final TimeSystem defaultTimeSystem) {
36          super(defaultTimeSystem);
37      }
38  
39      /** Get the spacecraft name for which the orbit state is provided.
40       * @return the spacecraft name
41       */
42      public String getObjectName() {
43          return objectName;
44      }
45  
46      /** Set the spacecraft name for which the orbit state is provided.
47       * @param objectName the spacecraft name to be set
48       */
49      public void setObjectName(final String objectName) {
50          refuseFurtherComments();
51          this.objectName = objectName;
52      }
53  
54  }
55  
56  
57