-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathBaseObject.java
More file actions
29 lines (27 loc) · 826 Bytes
/
BaseObject.java
File metadata and controls
29 lines (27 loc) · 826 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.powerdata.openpa;
/*
* Copyright (c) 2016, PowerData Corporation, Incremental Systems Corporation
* All rights reserved.
* Licensed under the BSD-3 Clause License.
* See full license at https://powerdata.github.io/openpa/LICENSE.md
*/
/**
* Base of OpenAPI object hierarchy
* @author chris@powerdata.com
*
*/
public interface BaseObject extends BaseObjectCore
{
/** get unique String object identifier */
String getID()throws PAModelException;
/** set unique String object identifier */
void setID(String id)throws PAModelException;
/** get object name */
String getName()throws PAModelException;
/** set object name */
void setName(String name)throws PAModelException;
/** unique object integer identifier */
int getKey();
/** return the list */
BaseList<? extends BaseObject> getList();
}