Skip to content
This repository has been archived by the owner on Oct 12, 2021. It is now read-only.

Commit

Permalink
WIP #106
Browse files Browse the repository at this point in the history
  • Loading branch information
berezovskyi committed Nov 7, 2020
1 parent 36e503c commit 0347f1c
Show file tree
Hide file tree
Showing 69 changed files with 42 additions and 14 deletions.
4 changes: 4 additions & 0 deletions .gitignore
@@ -1,5 +1,9 @@
target/
overlays/

.settings/
.classpath
.project

*.iml
.idea/
12 changes: 12 additions & 0 deletions oslc-client-base/pom.xml
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>org.example</groupId>
<artifactId>oslc-client-base</artifactId>
<version>1.0-SNAPSHOT</version>


</project>
Expand Up @@ -16,7 +16,7 @@
* Chris Peters - initial API and implementation
* Gianluca Bernardini - initial API and implementation
*******************************************************************************/
package org.eclipse.lyo.client.exception;
package org.eclipse.lyo.client.exception.exception;

public class FixMessageFormat {

Expand Down
Expand Up @@ -13,7 +13,7 @@
*
* Michael Fiedler - initial API and implementation
*******************************************************************************/
package org.eclipse.lyo.client.exception;
package org.eclipse.lyo.client.exception.exception;


/**
Expand Down
Expand Up @@ -13,7 +13,7 @@
*
* Michael Fiedler - initial API and implementation
*******************************************************************************/
package org.eclipse.lyo.client.exception;
package org.eclipse.lyo.client.exception.exception;


/**
Expand Down
Expand Up @@ -16,7 +16,7 @@
* Chris Peters - initial API and implementation
* Gianluca Bernardini - initial API and implementation
*******************************************************************************/
package org.eclipse.lyo.client.exception;
package org.eclipse.lyo.client.exception.exception;

import java.text.MessageFormat;
import java.util.Locale;
Expand Down
Expand Up @@ -16,7 +16,7 @@
* Chris Peters - initial API and implementation
* Gianluca Bernardini - initial API and implementation
*******************************************************************************/
package org.eclipse.lyo.client.exception;
package org.eclipse.lyo.client.exception.exception;

/**
* Base class for all application exceptions.
Expand Down
Expand Up @@ -13,7 +13,7 @@
*
* Michael Fiedler - initial API and implementation
*******************************************************************************/
package org.eclipse.lyo.client.exception;
package org.eclipse.lyo.client.exception.exception;


/**
Expand Down
Expand Up @@ -13,7 +13,7 @@
*
* Michael Fiedler - initial API and implementation
*******************************************************************************/
package org.eclipse.lyo.client.exception;
package org.eclipse.lyo.client.exception.exception;


@SuppressWarnings("serial")
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion oslc4j-client/pom.xml → oslc-client/pom.xml
Expand Up @@ -2,7 +2,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.eclipse.lyo.clients</groupId>
<artifactId>oslc4j-client</artifactId>
<artifactId>oslc-client</artifactId>
<version>4.0.0-SNAPSHOT</version>
<name>OSLC Java Client (JAX-RS 2.0)</name>
<description>Eclipse Lyo OSLC Java client based on OSLC4J and JAX-RS 2.0</description>
Expand Down
12 changes: 12 additions & 0 deletions oslc-java-client-resources/pom.xml
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>org.example</groupId>
<artifactId>oslc-java-client-resources</artifactId>
<version>1.0-SNAPSHOT</version>


</project>
Expand Up @@ -58,7 +58,7 @@
import org.apache.wink.client.Resource;
import org.apache.wink.client.RestClient;
import org.apache.wink.client.httpclient.ApacheHttpClientConfig;
import org.eclipse.lyo.client.exception.ResourceNotFoundException;
import org.eclipse.lyo.client.exception.exception.ResourceNotFoundException;
import org.eclipse.lyo.client.oslc.resources.OslcQuery;
import org.eclipse.lyo.oslc4j.core.model.CreationFactory;
import org.eclipse.lyo.oslc4j.core.model.QueryCapability;
Expand Down
Expand Up @@ -28,8 +28,8 @@
import org.apache.http.entity.StringEntity;
import org.apache.http.util.EntityUtils;
import org.apache.xerces.impl.dv.util.Base64;
import org.eclipse.lyo.client.exception.JazzAuthErrorException;
import org.eclipse.lyo.client.exception.JazzAuthFailedException;
import org.eclipse.lyo.client.exception.exception.JazzAuthErrorException;
import org.eclipse.lyo.client.exception.exception.JazzAuthFailedException;
import org.eclipse.lyo.client.oslc.OslcClient;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
Expand Down
Expand Up @@ -23,8 +23,8 @@
import javax.ws.rs.core.UriBuilder;

import org.apache.wink.client.ClientResponse;
import org.eclipse.lyo.client.exception.ResourceNotFoundException;
import org.eclipse.lyo.client.exception.RootServicesException;
import org.eclipse.lyo.client.exception.exception.ResourceNotFoundException;
import org.eclipse.lyo.client.exception.exception.RootServicesException;
import org.eclipse.lyo.client.oslc.OSLCConstants;
import org.eclipse.lyo.client.oslc.OslcClient;
import org.eclipse.lyo.client.oslc.OslcOAuthClient;
Expand Down
Expand Up @@ -26,7 +26,7 @@
import net.oauth.OAuthException;

import org.apache.wink.client.ClientResponse;
import org.eclipse.lyo.client.exception.ResourceNotFoundException;
import org.eclipse.lyo.client.exception.exception.ResourceNotFoundException;
import org.eclipse.lyo.client.oslc.OSLCConstants;
import org.eclipse.lyo.client.oslc.OslcClient;
import org.eclipse.lyo.oslc4j.core.model.CreationFactory;
Expand Down

0 comments on commit 0347f1c

Please sign in to comment.