Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -318,11 +318,11 @@ For a Gradle project add the SDK as a dependency by updating your `build.gradle`

Thin JAR (recommended):

implementation group: 'org.zowe.client.java.sdk', name: 'zowe-client-java-sdk', version: '7.0.2'
implementation group: 'org.zowe.client.java.sdk', name: 'zowe-client-java-sdk', version: '7.0.3'

Fat JAR (with dependencies):

implementation group: 'org.zowe.client.java.sdk', name: 'zowe-client-java-sdk', version: '7.0.2', classifier: 'jar-with-dependencies'
implementation group: 'org.zowe.client.java.sdk', name: 'zowe-client-java-sdk', version: '7.0.3', classifier: 'jar-with-dependencies'

## Publishing to Maven Central

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>org.zowe.client.java.sdk</groupId>
<artifactId>zowe-client-java-sdk</artifactId>
<version>7.0.2</version>
<version>7.0.3</version>

<packaging>jar</packaging>
<name>${project.groupId}:${project.artifactId}</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public void updateTeamConfig(final KeyTarConfig config, final String profileName
} catch (IOException e) {
throw new TeamConfigException("Error writing zowe global team configuration file", e);
}
LOG.debug("updateTeamConfig profile {} updated with {}", profileName, updatedProperties);
LOG.debug("updateTeamConfig profile {} updated with updatedProperties ******", profileName);
}

/**
Expand Down
8 changes: 4 additions & 4 deletions src/main/java/zowe/client/sdk/zosjobs/methods/JobGet.java
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ public List<Job> getCommon(final JobGetInputData getInputData) throws ZosmfReque
if (url.contains(UrlConstants.QUERY_ID)) {
url += UrlConstants.COMBO_ID;
}
url += JobsConstants.QUERY_JOBID + getInputData.getJobId().get();
url += JobsConstants.QUERY_JOBID + EncodeUtils.encodeURIComponent(getInputData.getJobId().get());
}
} else {
// if no user defined in ZosConnection, then query jobs by the z/OS user ID
Expand Down Expand Up @@ -321,7 +321,7 @@ public String getSpoolContentCommon(final JobFile jobFile) throws ZosmfRequestEx
UrlConstants.URL_PATH_DELIM +
EncodeUtils.encodeURIComponent(jobFile.getJobName()) +
UrlConstants.URL_PATH_DELIM +
jobFile.getJobId() +
EncodeUtils.encodeURIComponent(jobFile.getJobId()) +
JobsConstants.RESOURCE_SPOOL_FILES +
UrlConstants.URL_PATH_DELIM +
jobFile.getId() +
Expand Down Expand Up @@ -385,7 +385,7 @@ public List<JobFile> getSpoolFilesCommon(final CommonJobInputData commonInputDat
UrlConstants.URL_PATH_DELIM +
EncodeUtils.encodeURIComponent(commonInputData.getJobName().get()) +
UrlConstants.URL_PATH_DELIM +
commonInputData.getJobId().get() +
EncodeUtils.encodeURIComponent(commonInputData.getJobId().get()) +
"/files";

if (request == null || !(request instanceof GetJsonZosmfRequest)) {
Expand Down Expand Up @@ -484,7 +484,7 @@ public Job getStatusCommon(final CommonJobInputData commonInputData) throws Zosm
UrlConstants.URL_PATH_DELIM +
EncodeUtils.encodeURIComponent(commonInputData.getJobName().get()) +
UrlConstants.URL_PATH_DELIM +
commonInputData.getJobId().get();
EncodeUtils.encodeURIComponent(commonInputData.getJobId().get());

if (commonInputData.isStepData()) {
url += JobsConstants.QUERY_ID + JobsConstants.STEP_DATA;
Expand Down
Loading