/** * ============================================================================= * * ORCID (R) Open Source * http://orcid.org * * Copyright (c) 2012-2014 ORCID, Inc. * Licensed under an MIT-Style License (MIT) * http://orcid.org/open-source-license * * This copyright and license information (including a link to the full license) * shall be included in its entirety in all copies or substantial portion of * the software. * * ============================================================================= */ package org.orcid.core.salesforce.model; import java.io.Serializable; import java.net.URL; /** * * @author Will Simpson * */ public class Integration implements Serializable { private static final long serialVersionUID = 1L; private String name; private String description; private String stage; private URL resourceUrl; public String getName() { return name; } public void setName(String name) { this.name = name; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public String getStage() { return stage; } public void setStage(String stage) { this.stage = stage; } public URL getResourceUrl() { return resourceUrl; } public void setResourceUrl(URL resourceUrl) { this.resourceUrl = resourceUrl; } }