thurka commented on code in PR #6563: URL: https://github.com/apache/netbeans/pull/6563#discussion_r1360707225
########## enterprise/cloud.oracle/src/org/netbeans/modules/cloud/oracle/vault/VaultNode.java: ########## @@ -0,0 +1,82 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +package org.netbeans.modules.cloud.oracle.vault; + +import com.oracle.bmc.keymanagement.KmsVaultClient; +import com.oracle.bmc.keymanagement.requests.ListVaultsRequest; +import java.util.stream.Collectors; +import org.netbeans.modules.cloud.oracle.ChildrenProvider; +import org.netbeans.modules.cloud.oracle.NodeProvider; +import org.netbeans.modules.cloud.oracle.OCIManager; +import org.netbeans.modules.cloud.oracle.OCINode; +import org.netbeans.modules.cloud.oracle.compartment.CompartmentItem; +import org.netbeans.modules.cloud.oracle.items.OCID; +import org.openide.util.NbBundle; + +/** + * + * @author Jan Horvath + */ [email protected]({ +}) +public class VaultNode extends OCINode { + private static final String VAULT_ICON = "org/netbeans/modules/cloud/oracle/resources/vault.svg"; // NOI18N + + public VaultNode(VaultItem vault) { + super(vault); + setName(vault.getName()); + setDisplayName(vault.getName()); + setIconBaseWithExtension(VAULT_ICON); + setShortDescription(vault.getDescription()); + } + + public static NodeProvider<VaultItem> createNode() { + return VaultNode::new; + } + + /** + * Retrieves list of Databases belonging to a given Compartment. + * + * @param compartmentId OCID of the Compartment + * @return List of {@code OCIItem} describing databases in a given + * Compartment + */ Review Comment: Incorrect javadoc -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
