mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
commercial paper sample for Java Gateway SDK (client app) Change-Id: I80c6b9dbc36631004903244a20e6a492138c7751 Signed-off-by: andrew-coleman <andrew_coleman@uk.ibm.com>
10 lines
264 B
Java
10 lines
264 B
Java
package org.example.ledger.api;
|
|
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
|
|
@Retention(value=RetentionPolicy.RUNTIME)
|
|
public @interface Property {
|
|
public String name() default "";
|
|
public boolean key() default false;
|
|
}
|