funkygao/cp-ddd-framework

View on GitHub
dddplus-spec/src/main/java/io/github/dddplus/model/IRule.java

Summary

Maintainability
A
0 mins
Test Coverage
/*
 * Copyright DDDplus Authors.
 *
 * Licensed under the Apache License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0
 */
package io.github.dddplus.model;

/**
 * Business Rule.
 *
 * <p>The world abounds in such rules; business and society are based on them.</p >
 * <pre>
 *              IRule
 *                |
 *   +------------+--------------+
 *   |                           |
 * IBehavioralRule      IDefinitionalRule
 *                               |
 *                          inference rule
 * </pre>
 */
public interface IRule {
}