All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.codbex.kronos.parser.hdbcalculationview.ndb.repositorymodelresource.ResourceMetadata Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2022 codbex or an codbex affiliate company and contributors
 *
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v2.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v20.html
 *
 * SPDX-FileCopyrightText: 2022 codbex or an codbex affiliate company and contributors
 * SPDX-License-Identifier: EPL-2.0
 */
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0 
// See https://javaee.github.io/jaxb-v2/ 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2020.11.26 at 10:54:28 AM EET 
//


package com.codbex.kronos.parser.hdbcalculationview.ndb.repositorymodelresource;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;


/**
 * This is the meta data that is stored outside of the XML in the repository persistence
 * Some of its attributes are stored redundantly in the EMF XML to have them available also when
 * performing a client export (e.g. timestamps like createdAt)
 * Other attributes are transient like e.g. the packageName. Also user name properties are transient
 * and not stored in the XML
 *
 *
 * Java class for ResourceMetadata complex type.
 *
 * The following schema fragment specifies the expected content contained within this class.
 *
 * 
 * <complexType name="ResourceMetadata">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <attribute name="activatedAt" type="{http://www.sap.com/ndb/BaseModelBase.ecore}Timestamp" />
 *       <attribute name="activatedBy" type="{http://www.sap.com/ndb/BaseModelBase.ecore}DbName" />
 *       <attribute name="changedAt" type="{http://www.sap.com/ndb/BaseModelBase.ecore}Timestamp" />
 *       <attribute name="changedBy" type="{http://www.sap.com/ndb/BaseModelBase.ecore}DbName" />
 *       <attribute name="createdAt" type="{http://www.sap.com/ndb/BaseModelBase.ecore}Timestamp" default="" />
 *       <attribute name="createdBy" type="{http://www.sap.com/ndb/BaseModelBase.ecore}DbName" />
 *       <attribute name="packageName" type="{http://www.sap.com/ndb/RepositoryModelResource.ecore}PackageName" />
 *       <attribute name="status" type="{http://www.sap.com/ndb/RepositoryModelResource.ecore}Status" />
 *       <attribute name="version" type="{http://www.sap.com/ndb/RepositoryModelResource.ecore}Version" />
 *       <attribute name="versionNumber" type="{http://www.w3.org/2001/XMLSchema}int" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
*/ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ResourceMetadata") public class ResourceMetadata { /** The activated at. */ @XmlAttribute(name = "activatedAt") protected String activatedAt; /** The activated by. */ @XmlAttribute(name = "activatedBy") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String activatedBy; /** The changed at. */ @XmlAttribute(name = "changedAt") protected String changedAt; /** The changed by. */ @XmlAttribute(name = "changedBy") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String changedBy; /** The created at. */ @XmlAttribute(name = "createdAt") protected String createdAt; /** The created by. */ @XmlAttribute(name = "createdBy") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String createdBy; /** The package name. */ @XmlAttribute(name = "packageName") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String packageName; /** The status. */ @XmlAttribute(name = "status") protected Status status; /** The version. */ @XmlAttribute(name = "version") protected Version version; /** The version number. */ @XmlAttribute(name = "versionNumber") protected Integer versionNumber; /** * Gets the value of the activatedAt property. * * @return possible object is * {@link String } */ public String getActivatedAt() { return activatedAt; } /** * Sets the value of the activatedAt property. * * @param value allowed object is * {@link String } */ public void setActivatedAt(String value) { this.activatedAt = value; } /** * Gets the value of the activatedBy property. * * @return possible object is * {@link String } */ public String getActivatedBy() { return activatedBy; } /** * Sets the value of the activatedBy property. * * @param value allowed object is * {@link String } */ public void setActivatedBy(String value) { this.activatedBy = value; } /** * Gets the value of the changedAt property. * * @return possible object is * {@link String } */ public String getChangedAt() { return changedAt; } /** * Sets the value of the changedAt property. * * @param value allowed object is * {@link String } */ public void setChangedAt(String value) { this.changedAt = value; } /** * Gets the value of the changedBy property. * * @return possible object is * {@link String } */ public String getChangedBy() { return changedBy; } /** * Sets the value of the changedBy property. * * @param value allowed object is * {@link String } */ public void setChangedBy(String value) { this.changedBy = value; } /** * Gets the value of the createdAt property. * * @return possible object is * {@link String } */ public String getCreatedAt() { if (createdAt == null) { return ""; } else { return createdAt; } } /** * Sets the value of the createdAt property. * * @param value allowed object is * {@link String } */ public void setCreatedAt(String value) { this.createdAt = value; } /** * Gets the value of the createdBy property. * * @return possible object is * {@link String } */ public String getCreatedBy() { return createdBy; } /** * Sets the value of the createdBy property. * * @param value allowed object is * {@link String } */ public void setCreatedBy(String value) { this.createdBy = value; } /** * Gets the value of the packageName property. * * @return possible object is * {@link String } */ public String getPackageName() { return packageName; } /** * Sets the value of the packageName property. * * @param value allowed object is * {@link String } */ public void setPackageName(String value) { this.packageName = value; } /** * Gets the value of the status property. * * @return possible object is * {@link Status } */ public Status getStatus() { return status; } /** * Sets the value of the status property. * * @param value allowed object is * {@link Status } */ public void setStatus(Status value) { this.status = value; } /** * Gets the value of the version property. * * @return possible object is * {@link Version } */ public Version getVersion() { return version; } /** * Sets the value of the version property. * * @param value allowed object is * {@link Version } */ public void setVersion(Version value) { this.version = value; } /** * Gets the value of the versionNumber property. * * @return possible object is * {@link Integer } */ public Integer getVersionNumber() { return versionNumber; } /** * Sets the value of the versionNumber property. * * @param value allowed object is * {@link Integer } */ public void setVersionNumber(Integer value) { this.versionNumber = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy