| File | Line |
|---|
| org/jclouds/trmk/vcloud_0_8/domain/internal/CatalogImpl.java | 113 |
| org/jclouds/trmk/vcloud_0_8/domain/internal/ReferenceTypeImpl.java | 81 |
if (href == null) {
if (other.href != null)
return false;
} else if (!href.equals(other.href))
return false;
if (name == null) {
if (other.name != null)
return false;
} else if (!name.equals(other.name))
return false;
if (type == null) {
if (other.type != null)
return false;
} else if (!type.equals(other.type))
return false;
return true;
}
@Override
public String toString() { |
| File | Line |
|---|
| org/jclouds/trmk/vcloud_0_8/functions/OrgNameCatalogNameItemNameToEndpoint.java | 53 |
| org/jclouds/trmk/vcloud_0_8/functions/OrgNameCatalogNameVAppTemplateNameToEndpoint.java | 54 |
this.defaultOrg = defaultOrg;
this.defaultCatalog = defaultCatalog;
}
@SuppressWarnings("unchecked")
public URI apply(Object from) {
Iterable<Object> orgCatalog = (Iterable<Object>) checkNotNull(from, "args");
Object org = Iterables.get(orgCatalog, 0);
Object catalog = Iterables.get(orgCatalog, 1);
Object catalogItem = Iterables.get(orgCatalog, 2);
if (org == null)
org = defaultOrg.getName();
if (catalog == null)
catalog = defaultCatalog.getName(); |
| File | Line |
|---|
| org/jclouds/trmk/vcloud_0_8/domain/NetworkExtendedInfo.java | 156 |
| org/jclouds/trmk/vcloud_0_8/domain/VAppExtendedInfo.java | 95 |
if (href == null) {
if (other.href != null)
return false;
} else if (!href.equals(other.href))
return false;
if (id == null) {
if (other.id != null)
return false;
} else if (!id.equals(other.id))
return false;
if (name == null) {
if (other.name != null)
return false;
} else if (!name.equals(other.name))
return false;
if (tags == null) { |