/* * Copyright (c) 2015 EMC Corporation * All Rights Reserved */ package com.emc.sa.asset.annotation; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * For an Asset, signifies the assetNamespace the assetType it is, i.e. vmware for vmware.vcenter */ @Target(ElementType.TYPE) @Retention(RetentionPolicy.RUNTIME) public @interface AssetNamespace { public String value(); }