Author: adietish
Date: 2011-09-28 11:59:40 -0400 (Wed, 28 Sep 2011)
New Revision: 35119
Modified:
trunk/as/plugins/org.jboss.ide.eclipse.as.openshift.core/src/org/jboss/ide/eclipse/as/openshift/core/internal/OpenshiftService.java
Log:
Modified:
trunk/as/plugins/org.jboss.ide.eclipse.as.openshift.core/src/org/jboss/ide/eclipse/as/openshift/core/internal/OpenshiftService.java
===================================================================
---
trunk/as/plugins/org.jboss.ide.eclipse.as.openshift.core/src/org/jboss/ide/eclipse/as/openshift/core/internal/OpenshiftService.java 2011-09-28
15:33:59 UTC (rev 35118)
+++
trunk/as/plugins/org.jboss.ide.eclipse.as.openshift.core/src/org/jboss/ide/eclipse/as/openshift/core/internal/OpenshiftService.java 2011-09-28
15:59:40 UTC (rev 35119)
@@ -75,10 +75,10 @@
return response.getOpenshiftObject();
} catch (MalformedURLException e) {
throw new OpenshiftEndpointException(
- url, e, "Could not get InternalUser info for InternalUser \"{0}\" at
\"{1}\"", user.getRhlogin(), url, e);
+ url, e, "Could not get user info for user \"{0}\" at
\"{1}\"", user.getRhlogin(), url, e);
} catch (HttpClientException e) {
throw new OpenshiftEndpointException(
- url, e, "Could not get InternalUser info for InternalUser \"{0}\" at
\"{1}\"", user.getRhlogin(), url, e);
+ url, e, "Could not get user info for user \"{0}\" at
\"{1}\"", user.getRhlogin(), url, e);
}
}
@@ -187,7 +187,7 @@
} catch (UnauthorizedException e) {
throw new InvalidCredentialsOpenshiftException(
url, e,
- "Could not {0} application \"{1}\" at \"{2}\": Invalid
credentials InternalUser \"{3}\", password \"{4}\"",
+ "Could not {0} application \"{1}\" at \"{2}\": Invalid
credentials user \"{3}\", password \"{4}\"",
applicationRequest.getAction().toHumanReadable(), applicationRequest.getName(),
url,
user.getRhlogin(), user.getPassword());
} catch (HttpClientException e) {
@@ -218,7 +218,7 @@
} catch (UnauthorizedException e) {
throw new InvalidCredentialsOpenshiftException(
url, e,
- "Could not {0} application \"{1}\" at \"{2}\": Invalid
credentials InternalUser \"{3}\", password \"{4}\"",
+ "Could not {0} application \"{1}\" at \"{2}\": Invalid
credentials user \"{3}\", password \"{4}\"",
applicationRequest.getAction().toHumanReadable(), applicationRequest.getName(),
url,
user.getRhlogin(),
user.getPassword());