blob: 9dccaac41fd89cb09a06d32d30adc650d12db77a [file] [log] [blame]
/*
* Copyright (c) 1998, 2020 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,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
// Contributors:
// Oracle - initial API and implementation from Oracle TopLink
package org.eclipse.persistence.testing.tests.unitofwork;
import java.math.BigDecimal;
import org.eclipse.persistence.descriptors.RelationalDescriptor;
import org.eclipse.persistence.tools.schemaframework.TableDefinition;
public class Weather implements java.io.Serializable {
public long id;
public String stormPattern;
/**
* Weather constructor comment.
*/
public Weather() {
super();
}
public static RelationalDescriptor descriptor() {
RelationalDescriptor descriptor = new RelationalDescriptor();
/* First define the class, table and descriptor properties. */
descriptor.setJavaClass(Weather.class);
descriptor.setTableName("U_WEATH");
descriptor.setPrimaryKeyFieldName("ID");
descriptor.setSequenceNumberName("SEQ");
descriptor.setSequenceNumberFieldName("ID");
/* Next define the attribute mappings. */
descriptor.addDirectMapping("id", "ID");
descriptor.addDirectMapping("stormPattern", "STORM_PAT");
descriptor.setIdentityMapClass(org.eclipse.persistence.internal.identitymaps.NoIdentityMap.class);
descriptor.getQueryManager().checkDatabaseForDoesExist();
return descriptor;
}
public static Weather example1() {
Weather weather = new Weather();
weather.setStormPattern("sunny");
return weather;
}
public static Weather example2() {
Weather weather = new Weather();
weather.setStormPattern("raining");
return weather;
}
public String getStormPattern() {
return stormPattern;
}
/**
* Weather constructor comment.
*/
public void setStormPattern(String stormPattern) {
this.stormPattern = stormPattern;
}
/**
* Return a platform independant definition of the database table.
*/
public static TableDefinition tableDefinition() {
TableDefinition definition = new TableDefinition();
definition.setName("U_WEATH");
definition.addIdentityField("ID", BigDecimal.class, 15);
definition.addField("STORM_PAT", String.class, 50);
return definition;
}
}