dashboard
repositories
activity
search
login
common
/
securis
summary
reflog
commits
tree
compare
forks
blame
|
history
|
raw
|
HEAD
#0 - Changed license_data length from 1024 to 2048
César Calvo
2019-05-14
6c37f45769676e92b1b62a31b3f59f202dc67678
[common/securis.git]
/
securis
/
src
/
main
/
java
/
net
/
curisit
/
securis
/
db
/
common
/
Metadata.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package net.curisit.securis.db.common;
public interface Metadata {
public String getKey();
public void setKey(String key);
public String getValue();
public void setValue(String value);
public boolean isMandatory();
public void setMandatory(boolean mandatory);
}