initializer-generator/src/main/resources/templates/codes/sentinel/java/FooService.java.mustache [7:25]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 *
 * 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 com.alibaba.cloud.demo.sentinel.api;

/**
 * 该接口为 Dubbo 的服务端、消费端公用的接口定义。
 * 当前案例中，通过复制代码的方式实现接口发布，这不是最优雅的使用方法。更好的建议是通过maven坐标的方式独立维护api。
 */
public interface FooService {

    String sayHello(String name);

    long getCurrentTime(boolean slow);
}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



initializer-generator/src/main/resources/templates/codes/sentinelprovider/java/FooService.java.mustache [10:28]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 *
 * 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 com.alibaba.cloud.demo.sentinel.api;

/**
 * 该接口为 Dubbo 的服务端、消费端公用的接口定义。
 * 当前案例中，通过复制代码的方式实现接口发布，这不是最优雅的使用方法。更好的建议是通过maven坐标的方式独立维护api。
 */
public interface FooService {

    String sayHello(String name);

    long getCurrentTime(boolean slow);
}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



