Skip to content

Commit

Permalink
Change resource package location
Browse files Browse the repository at this point in the history
  • Loading branch information
fjtirado committed Nov 26, 2024
1 parent 5587edf commit 9427bed
Show file tree
Hide file tree
Showing 18 changed files with 23 additions and 20 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,9 @@
import io.serverlessworkflow.impl.expressions.JQExpressionFactory;
import io.serverlessworkflow.impl.jsonschema.DefaultSchemaValidatorFactory;
import io.serverlessworkflow.impl.jsonschema.SchemaValidatorFactory;
import io.serverlessworkflow.resources.DefaultResourceLoaderFactory;
import io.serverlessworkflow.resources.ResourceLoaderFactory;
import io.serverlessworkflow.impl.resources.DefaultResourceLoaderFactory;
import io.serverlessworkflow.impl.resources.ResourceLoaderFactory;

import java.util.Collection;
import java.util.Collections;
import java.util.HashSet;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@
import io.serverlessworkflow.impl.json.JsonUtils;
import io.serverlessworkflow.impl.jsonschema.SchemaValidator;
import io.serverlessworkflow.impl.jsonschema.SchemaValidatorFactory;
import io.serverlessworkflow.resources.ResourceLoader;
import io.serverlessworkflow.impl.resources.ResourceLoader;

import java.nio.file.Path;
import java.util.Collection;
import java.util.Map;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,9 @@
import io.serverlessworkflow.impl.json.JsonUtils;
import io.serverlessworkflow.impl.jsonschema.SchemaValidator;
import io.serverlessworkflow.impl.jsonschema.SchemaValidatorFactory;
import io.serverlessworkflow.resources.ResourceLoader;
import io.serverlessworkflow.resources.StaticResource;
import io.serverlessworkflow.impl.resources.ResourceLoader;
import io.serverlessworkflow.impl.resources.StaticResource;

import java.io.IOException;
import java.io.InputStream;
import java.io.UncheckedIOException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.serverlessworkflow.resources;
package io.serverlessworkflow.impl.resources;

import java.io.InputStream;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.serverlessworkflow.resources;
package io.serverlessworkflow.impl.resources;

import io.serverlessworkflow.api.types.Endpoint;
import io.serverlessworkflow.api.types.EndpointUri;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.serverlessworkflow.resources;
package io.serverlessworkflow.impl.resources;

import java.nio.file.Path;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.serverlessworkflow.resources;
package io.serverlessworkflow.impl.resources;

import com.fasterxml.jackson.databind.JsonNode;
import io.serverlessworkflow.impl.TaskContext;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.serverlessworkflow.resources;
package io.serverlessworkflow.impl.resources;

import java.io.IOException;
import java.io.InputStream;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.serverlessworkflow.resources;
package io.serverlessworkflow.impl.resources;

import java.io.IOException;
import java.io.InputStream;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.serverlessworkflow.resources;
package io.serverlessworkflow.impl.resources;

import io.serverlessworkflow.api.types.ExternalResource;
import io.serverlessworkflow.impl.WorkflowContext;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.serverlessworkflow.resources;
package io.serverlessworkflow.impl.resources;

import java.nio.file.Path;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.serverlessworkflow.resources;
package io.serverlessworkflow.impl.resources;

import java.io.InputStream;

Expand Down
2 changes: 1 addition & 1 deletion impl/core/src/test/resources/switch-then-string.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
document:
dsl: 1.0.0-alpha5
namespace: examples
namespace: test
name: switch
version: 0.1.0
do:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
document:
dsl: 1.0.0-alpha5
namespace: examples
namespace: test
name: call-http-shorthand-endpoint
version: '0.1.0'
do:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
document:
dsl: 1.0.0-alpha2
namespace: examples
namespace: test
name: http-query-params-schema
version: 1.0.0-alpha2
input:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
document:
dsl: 1.0.0-alpha2
namespace: examples
namespace: test
name: http-query-params
version: 1.0.0-alpha2
input:
Expand Down
2 changes: 1 addition & 1 deletion impl/http/src/test/resources/callGetHttp.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
document:
dsl: 1.0.0-alpha1
namespace: examples
namespace: test
name: http-call-with-response
version: 1.0.0
do:
Expand Down
2 changes: 1 addition & 1 deletion impl/http/src/test/resources/callPostHttp.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
document:
dsl: 1.0.0-alpha1
namespace: examples
namespace: test
name: http-call-with-response-output
version: 1.0.0
do:
Expand Down

0 comments on commit 9427bed

Please sign in to comment.