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-15679] fixed compilation errors in tests when switching to new client #256

Merged
merged 1 commit into from
Oct 16, 2013
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 @@ -13,13 +13,15 @@
import java.util.Collection;
import java.util.Date;
import java.util.List;
import java.util.Map;
import java.util.concurrent.Future;

import com.jcraft.jsch.Session;
import com.openshift.client.ApplicationScale;
import com.openshift.client.IApplication;
import com.openshift.client.IApplicationPortForwarding;
import com.openshift.client.IDomain;
import com.openshift.client.IEnvironmentVariable;
import com.openshift.client.IGearGroup;
import com.openshift.client.IGearProfile;
import com.openshift.client.Messages;
Expand Down Expand Up @@ -266,4 +268,45 @@ public Messages getMessages() {
public String getInitialGitUrl() {
throw new UnsupportedOperationException();
}

@Override
public IEnvironmentVariable addEnvironmentVariable(String arg0, String arg1) throws OpenShiftSSHOperationException {
throw new UnsupportedOperationException();
}

@Override
public Map<String, IEnvironmentVariable> addEnvironmentVariables(Map<String, String> arg0)
throws OpenShiftSSHOperationException {
throw new UnsupportedOperationException();
}

@Override
public boolean canGetEnvironmentVariables() {
throw new UnsupportedOperationException();
}

@Override
public boolean canUpdateEnvironmentVariables() {
throw new UnsupportedOperationException();
}

@Override
public IEnvironmentVariable getEnvironmentVariable(String arg0) throws OpenShiftSSHOperationException {
throw new UnsupportedOperationException();
}

@Override
public Map<String, IEnvironmentVariable> getEnvironmentVariables() throws OpenShiftSSHOperationException {
throw new UnsupportedOperationException();
}

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

@Override
public boolean hasEnvironmentVariable(String arg0) throws OpenShiftSSHOperationException {
throw new UnsupportedOperationException();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
package org.jboss.tools.openshift.express.test.core;

import java.util.List;
import java.util.Map;

import com.openshift.client.ApplicationScale;
import com.openshift.client.IApplication;
Expand Down Expand Up @@ -158,5 +159,12 @@ public IApplication createApplication(String name, IStandaloneCartridge standalo
IGearProfile profile, String initialGitUrl, int timeout, IEmbeddableCartridge... embeddableCartridges) throws OpenShiftException {
throw new UnsupportedOperationException();
}

@Override
public IApplication createApplication(String arg0, IStandaloneCartridge arg1, ApplicationScale arg2,
IGearProfile arg3, String arg4, int arg5, Map<String, String> arg6, IEmbeddableCartridge... arg7)
throws OpenShiftException {
throw new UnsupportedOperationException();
}

}