mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
53 lines
2.5 KiB
Java
53 lines
2.5 KiB
Java
/**
|
|
* Copyright (C) 2010 Cloud.com, Inc. All rights reserved.
|
|
*
|
|
* This software is licensed under the GNU General Public License v3 or later.
|
|
*
|
|
* It is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or any later version.
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
package com.cloud.network.security;
|
|
|
|
import java.util.List;
|
|
|
|
import com.cloud.api.commands.AuthorizeNetworkGroupIngressCmd;
|
|
import com.cloud.api.commands.CreateNetworkGroupCmd;
|
|
import com.cloud.api.commands.DeleteNetworkGroupCmd;
|
|
import com.cloud.api.commands.ListNetworkGroupsCmd;
|
|
import com.cloud.api.commands.RevokeNetworkGroupIngressCmd;
|
|
import com.cloud.exception.InvalidParameterValueException;
|
|
import com.cloud.exception.PermissionDeniedException;
|
|
import com.cloud.exception.ResourceInUseException;
|
|
|
|
public interface NetworkGroupService {
|
|
/**
|
|
* Create a network group with the given name and description
|
|
* @param command the command specifying the name and description
|
|
* @return the created network group if successful, null otherwise
|
|
*/
|
|
public NetworkGroup createNetworkGroup(CreateNetworkGroupCmd command) throws PermissionDeniedException, InvalidParameterValueException;
|
|
boolean revokeNetworkGroupIngress(RevokeNetworkGroupIngressCmd cmd);
|
|
|
|
boolean deleteNetworkGroup(DeleteNetworkGroupCmd cmd) throws ResourceInUseException, PermissionDeniedException, InvalidParameterValueException;
|
|
|
|
/**
|
|
* Search for network groups and associated ingress rules for the given account, domain, group name, and/or keyword.
|
|
* The search terms are specified in the search criteria.
|
|
* @return the list of network groups and associated ingress rules
|
|
*/
|
|
public List<? extends NetworkGroupRules> searchForNetworkGroupRules(ListNetworkGroupsCmd cmd) throws PermissionDeniedException, InvalidParameterValueException;
|
|
|
|
public List<? extends IngressRule> authorizeNetworkGroupIngress(AuthorizeNetworkGroupIngressCmd cmd) throws InvalidParameterValueException, PermissionDeniedException;
|
|
|
|
|
|
}
|