Skip to content

Commit

Permalink
bring back FactData.java
Browse files Browse the repository at this point in the history
  • Loading branch information
tkobayas committed Nov 8, 2023
1 parent 034663e commit 18c8984
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pr-drools.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- name: Build Chain
uses: apache/incubator-kie-kogito-pipelines/.ci/actions/build-chain@main
env:
BUILD_MVN_OPTS_CURRENT: -Dfull -X
BUILD_MVN_OPTS_CURRENT: -X
with:
definition-file: https://raw.githubusercontent.com/${GROUP:apache}/incubator-kie-drools/${BRANCH:main}/.ci/buildchain-config.yaml
annotations-prefix: ${{ runner.os }}-${{ matrix.java-version }}/${{ matrix.maven-version }}
Expand Down
44 changes: 44 additions & 0 deletions drools-decisiontables/src/test/java/com/sample/FactData.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 com.sample;

/**
* ファクト
*/
public class FactData {

private int 値;
private String エラーメッセージ;

public int get値() {
return this.値;
}

public void set値(int 値) {
this.値 = 値;
}

public String getエラーメッセージ() {
return this.エラーメッセージ;
}

public void setエラーメッセージ(String エラーメッセージ) {
this.エラーメッセージ = エラーメッセージ;
}
}

0 comments on commit 18c8984

Please sign in to comment.