| /* |
| * Copyright (c) 2017, 2018 Oracle and/or its affiliates. All rights reserved. |
| * |
| * This program and the accompanying materials are made available under the |
| * terms of the Eclipse Public License v. 2.0, which is available at |
| * http://www.eclipse.org/legal/epl-2.0. |
| * |
| * This Source Code may also be made available under the following Secondary |
| * Licenses when the conditions for such availability set forth in the |
| * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, |
| * version 2 with the GNU Classpath Exception, which is available at |
| * https://www.gnu.org/software/classpath/license.html. |
| * |
| * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 |
| */ |
| |
| // This class was generated by the JAXRPC SI, do not edit. |
| // Contents subject to change without notice. |
| // JAX-RPC Standard Implementation (1.1, build EA-R26) |
| |
| package com.sun.s1asdev.ejb.classload.lifecycle; |
| |
| |
| public class ResultElement { |
| protected java.lang.String summary; |
| protected java.lang.String URL; |
| protected java.lang.String snippet; |
| protected java.lang.String title; |
| protected java.lang.String cachedSize; |
| protected boolean relatedInformationPresent; |
| protected java.lang.String hostName; |
| protected com.sun.s1asdev.ejb.classload.lifecycle.DirectoryCategory directoryCategory; |
| protected java.lang.String directoryTitle; |
| |
| public ResultElement() { |
| } |
| |
| public ResultElement(java.lang.String summary, java.lang.String URL, java.lang.String snippet, java.lang.String title, java.lang.String cachedSize, boolean relatedInformationPresent, java.lang.String hostName, com.sun.s1asdev.ejb.classload.lifecycle.DirectoryCategory directoryCategory, java.lang.String directoryTitle) { |
| this.summary = summary; |
| this.URL = URL; |
| this.snippet = snippet; |
| this.title = title; |
| this.cachedSize = cachedSize; |
| this.relatedInformationPresent = relatedInformationPresent; |
| this.hostName = hostName; |
| this.directoryCategory = directoryCategory; |
| this.directoryTitle = directoryTitle; |
| } |
| |
| public java.lang.String getSummary() { |
| return summary; |
| } |
| |
| public void setSummary(java.lang.String summary) { |
| this.summary = summary; |
| } |
| |
| public java.lang.String getURL() { |
| return URL; |
| } |
| |
| public void setURL(java.lang.String URL) { |
| this.URL = URL; |
| } |
| |
| public java.lang.String getSnippet() { |
| return snippet; |
| } |
| |
| public void setSnippet(java.lang.String snippet) { |
| this.snippet = snippet; |
| } |
| |
| public java.lang.String getTitle() { |
| return title; |
| } |
| |
| public void setTitle(java.lang.String title) { |
| this.title = title; |
| } |
| |
| public java.lang.String getCachedSize() { |
| return cachedSize; |
| } |
| |
| public void setCachedSize(java.lang.String cachedSize) { |
| this.cachedSize = cachedSize; |
| } |
| |
| public boolean isRelatedInformationPresent() { |
| return relatedInformationPresent; |
| } |
| |
| public void setRelatedInformationPresent(boolean relatedInformationPresent) { |
| this.relatedInformationPresent = relatedInformationPresent; |
| } |
| |
| public java.lang.String getHostName() { |
| return hostName; |
| } |
| |
| public void setHostName(java.lang.String hostName) { |
| this.hostName = hostName; |
| } |
| |
| public com.sun.s1asdev.ejb.classload.lifecycle.DirectoryCategory getDirectoryCategory() { |
| return directoryCategory; |
| } |
| |
| public void setDirectoryCategory(com.sun.s1asdev.ejb.classload.lifecycle.DirectoryCategory directoryCategory) { |
| this.directoryCategory = directoryCategory; |
| } |
| |
| public java.lang.String getDirectoryTitle() { |
| return directoryTitle; |
| } |
| |
| public void setDirectoryTitle(java.lang.String directoryTitle) { |
| this.directoryTitle = directoryTitle; |
| } |
| } |