Merge "Issue #2253 fix issue where warnings do not show up in the drop down in Warngen" into development

Former-commit-id: 32053b62812fc375aebb5af21af1149b2b4944c5
This commit is contained in:
Nate Jensen 2013-08-13 12:34:44 -05:00 committed by Gerrit Code Review
commit d995e29afe
2 changed files with 6 additions and 1 deletions

View file

@ -47,7 +47,7 @@ import com.raytheon.uf.common.serialization.annotations.DynamicSerialize;
* May 02, 2013 1949 rjpeter Removed ugcZones.
* May 07, 2013 1869 bsteffen Remove dataURI column from
* PluginDataObject.
*
* Aug 13, 2013 2253 mnash Fixed null data uri errors
* </pre>
*
* @author bgonzale
@ -75,6 +75,7 @@ public class PracticeWarningRecord extends AbstractWarningRecord {
*/
public PracticeWarningRecord() {
super();
setPluginName("practicewarning");
}
/**
@ -98,6 +99,7 @@ public class PracticeWarningRecord extends AbstractWarningRecord {
public PracticeWarningRecord(String uri) {
super(uri);
}
@Override
@Column
@Access(AccessType.PROPERTY)

View file

@ -50,6 +50,7 @@ import com.raytheon.uf.common.serialization.annotations.DynamicSerialize;
* May 02, 2013 1949 rjpeter Removed ugcZones.
* May 07, 2013 1869 bsteffen Remove dataURI column from
* PluginDataObject.
* Aug 13, 2013 2253 mnash Fixed null data uri errors
* </pre>
*
* @author bwoodle
@ -137,6 +138,7 @@ public class WarningRecord extends AbstractWarningRecord {
*/
public WarningRecord() {
super();
setPluginName("warning");
}
/**
@ -160,6 +162,7 @@ public class WarningRecord extends AbstractWarningRecord {
public WarningRecord(String uri) {
super(uri);
}
@Override
@Column
@Access(AccessType.PROPERTY)