Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[JBIDE-18502] allow users to disable DHE ciphers, allow talking to RHEL 6.6 #504

Merged
merged 1 commit into from
Oct 8, 2014
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
<classpathentry exported="true" kind="lib" path="lib/slf4j-api-1.6.1.jar"/>
<classpathentry exported="true" kind="lib" path="lib/jboss-dmr-1.2.0.Final.jar"/>
<classpathentry exported="true" kind="lib" path="lib/commons-compress-1.8.1.jar"/>
<classpathentry exported="true" kind="lib" path="lib/openshift-java-client-2.6.1.Final.jar" sourcepath="/openshift-java-client"/>
<classpathentry exported="true" kind="lib" path="lib/openshift-java-client-2.7.0-SNAPSHOT.jar" sourcepath="/openshift-java-client"/>
<classpathentry kind="output" path="target/classes"/>
</classpath>
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Bundle-Vendor: %Bundle-Vendor
Bundle-Localization: plugin
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Bundle-ClassPath: .,
lib/openshift-java-client-2.6.1.Final.jar,
lib/openshift-java-client-2.7.0-SNAPSHOT.jar,
lib/log4j-1.2.17.jar,
lib/slf4j-api-1.6.1.jar,
lib/slf4j-log4j12-1.6.1.jar,
Expand Down
2 changes: 1 addition & 1 deletion plugins/org.jboss.tools.openshift.express.client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<artifactId>org.jboss.tools.openshift.express.client</artifactId>
<packaging>eclipse-plugin</packaging>
<properties>
<openshift-java-client.version>2.6.1.Final</openshift-java-client.version>
<openshift-java-client.version>2.7.0-SNAPSHOT</openshift-java-client.version>
<jboss-dmr.version>1.2.0.Final</jboss-dmr.version>
<commons-compress.version>1.8.1</commons-compress.version>
<log4j.version>1.2.17</log4j.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,10 @@
******************************************************************************/
package org.jboss.tools.openshift.express.test.core;

import java.util.Collection;
import java.util.List;

import com.openshift.client.IAuthorization;
import com.openshift.client.IDomain;
import com.openshift.client.IOpenShiftConnection;
import com.openshift.client.IOpenShiftSSHKey;
Expand Down Expand Up @@ -151,4 +153,34 @@ public IOpenShiftSSHKey addSSHKey(String name, ISSHPublicKey key) throws OpenShi
public boolean removeSSHKey(String name) {
throw new UnsupportedOperationException();
}

@Override
public IAuthorization createAuthorization(String arg0, String arg1) throws OpenShiftException {
throw new UnsupportedOperationException(); }

@Override
public IAuthorization createAuthorization(String arg0, String arg1, int arg2) throws OpenShiftException {
throw new UnsupportedOperationException(); }

@Override
public IAuthorization getAuthorization() throws OpenShiftException {
return null;
}

@Override
public IAuthorization getAuthorization(String arg0) throws OpenShiftException {
throw new UnsupportedOperationException(); }

@Override
public Collection<IAuthorization> getAuthorizations() throws OpenShiftException {
throw new UnsupportedOperationException(); }

@Override
public String getId() {
throw new UnsupportedOperationException(); }

@Override
public boolean removeAuthorization(String arg0) throws OpenShiftException {
throw new UnsupportedOperationException();
}
}