Line data Source code
1 : // Copyright (C) 2016 The Android Open Source Project 2 : // 3 : // Licensed under the Apache License, Version 2.0 (the "License"); 4 : // you may not use this file except in compliance with the License. 5 : // You may obtain a copy of the License at 6 : // 7 : // http://www.apache.org/licenses/LICENSE-2.0 8 : // 9 : // Unless required by applicable law or agreed to in writing, software 10 : // distributed under the License is distributed on an "AS IS" BASIS, 11 : // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 : // See the License for the specific language governing permissions and 13 : // limitations under the License. 14 : 15 : package com.google.gerrit.mail; 16 : 17 : import com.google.common.base.MoreObjects; 18 : import java.sql.Timestamp; 19 : 20 : /** MailMetadata represents metadata parsed from inbound email. */ 21 4 : public class MailMetadata { 22 : public Integer changeNumber; 23 : public Integer patchSet; 24 : public String author; // Author of the email 25 : public Timestamp timestamp; 26 : public String messageType; // we expect comment here 27 : 28 : public boolean hasRequiredFields() { 29 4 : return changeNumber != null 30 : && patchSet != null 31 : && author != null 32 : && timestamp != null 33 : && messageType != null; 34 : } 35 : 36 : @Override 37 : public String toString() { 38 2 : return MoreObjects.toStringHelper(this) 39 2 : .add("Change-Number", changeNumber) 40 2 : .add("Patch-Set", patchSet) 41 2 : .add("Author", author) 42 2 : .add("Timestamp", timestamp) 43 2 : .add("Message-Type", messageType) 44 2 : .toString(); 45 : } 46 : }