Line data Source code
1 : // Copyright (C) 2018 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.extensions.api.projects; 16 : 17 : /** 18 : * Input for a commentlink configuration on a project. 19 : * 20 : * <p>See {@link com.google.gerrit.entities.StoredCommentLinkInfo} for additional details. 21 : */ 22 1 : public class CommentLinkInput { 23 : /** A JavaScript regular expression to match positions to be replaced with a hyperlink. */ 24 : public String match; 25 : /** The URL to direct the user to whenever the regular expression is matched. */ 26 : public String link; 27 : /** Text inserted before the link if the regular expression is matched. */ 28 : public String prefix; 29 : /** Text inserted after the link if the regular expression is matched. */ 30 : public String suffix; 31 : /** Text of the link. */ 32 : public String text; 33 : /** Whether the commentlink is enabled. */ 34 : public Boolean enabled; 35 : }