All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hyperledger.composer.annotation.Pointer Maven / Gradle / Ivy

/*
 * Copyright IBM Corp. 2017 All Rights Reserved.
 *
 * SPDX-License-Identifier: Apache-2.0
 */

package org.hyperledger.composer.annotation;

import java.lang.annotation.*;

@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Pointer {
	boolean optional() default false;

	Class genericType() default Object.class;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy