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

org.contextmapper.tactic.dsl.validation.IssueCodes Maven / Gradle / Ivy

There is a newer version: 6.12.0
Show newest version
/*
 * Copyright 2013 The Sculptor Project Team, including the original 
 * author or authors.
 * 
 * Licensed 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.contextmapper.tactic.dsl.validation;

/**
 * Constants for validation errors.
 * 

* These constants are needed for Quick Fixes */ public interface IssueCodes { String ISSUE_CODE_PREFIX = "org.sculptor.dsl.validation.issue."; String CAPITALIZED_NAME = ISSUE_CODE_PREFIX + "capitalized_name"; String UNCAPITALIZED_NAME = ISSUE_CODE_PREFIX + "uncapitalized_name"; String DUPLICATE_NAME = ISSUE_CODE_PREFIX + "duplicate_name"; String USED_RESERVED_KEYWORD = ISSUE_CODE_PREFIX + "used_reserved_keyword"; String ALL_LOWERCASE_NAME = ISSUE_CODE_PREFIX + "all_lowercase_name"; String NON_PERSISTENT_EVENT = ISSUE_CODE_PREFIX + "non_persistent_event"; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy