Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/**
* eobjects.org MetaModel
* Copyright (C) 2010 eobjects.org
*
* This copyrighted material is made available to anyone wishing to use, modify,
* copy, or redistribute it subject to the terms and conditions of the GNU
* Lesser General Public License, as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
* for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this distribution; if not, write to:
* Free Software Foundation, Inc.
* 51 Franklin Street, Fifth Floor
* Boston, MA 02110-1301 USA
*/
package org.eobjects.metamodel.sugarcrm;
import java.util.ArrayList;
import java.util.List;
import org.eobjects.metamodel.schema.AbstractSchema;
import org.eobjects.metamodel.schema.Table;
import org.eobjects.metamodel.util.Ref;
import com.sugarcrm.ws.soap.SugarsoapPortType;
final class SugarCrmSchema extends AbstractSchema {
private static final long serialVersionUID = 1L;
private final List
_tables;
private final String _name;
public SugarCrmSchema(String name, SugarsoapPortType service, Ref sessionId) {
_name = name;
_tables = new ArrayList