/** * Licensed to the Austrian Association for Software Tool Integration (AASTI) * under one or more contributor license agreements. See the NOTICE file * distributed with this work for additional information regarding copyright * ownership. The AASTI licenses this file to you under the Apache License, * Version 2.0 (the "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.openengsb.core.api.model; import java.io.Serializable; /** * The CommitMetaInfo class contains meta information about a commit that has been done in the EDB/EKB context. It is * used in order to provide a human readable way to recognize a commit with more information than just the timestamp or * the revision of the commit. */ public class CommitMetaInfo implements Serializable { private static final long serialVersionUID = -2837447354678863937L; private String committer; private Long timestamp; private String context; private String comment; private String revision; private String parent; private String domainId; private String connectorId; private String instanceId; public String getCommitter() { return committer; } public void setCommitter(String committer) { this.committer = committer; } public Long getTimestamp() { return timestamp; } public void setTimestamp(Long timestamp) { this.timestamp = timestamp; } public String getContext() { return context; } public void setContext(String context) { this.context = context; } public String getComment() { return comment; } public void setComment(String comment) { this.comment = comment; } public String getRevision() { return revision; } public void setRevision(String revision) { this.revision = revision; } public String getParent() { return parent; } public void setParent(String parent) { this.parent = parent; } public String getDomainId() { return domainId; } public void setDomainId(String domainId) { this.domainId = domainId; } public String getConnectorId() { return connectorId; } public void setConnectorId(String connectorId) { this.connectorId = connectorId; } public String getInstanceId() { return instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; } }