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

com.liferay.portal.kernel.service.persistence.VirtualHostPersistence Maven / Gradle / Ivy

There is a newer version: 7.4.3.112-ga112
Show newest version
/**
 * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
 *
 * This library is free software; you can redistribute it and/or modify it under
 * the terms of the GNU Lesser General Public License as published by the Free
 * Software Foundation; either version 2.1 of the License, or (at your option)
 * any later version.
 *
 * This library 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 Lesser General Public License for more
 * details.
 */

package com.liferay.portal.kernel.service.persistence;

import aQute.bnd.annotation.ProviderType;

import com.liferay.portal.kernel.exception.NoSuchVirtualHostException;
import com.liferay.portal.kernel.model.VirtualHost;

import java.io.Serializable;

import java.util.Map;
import java.util.Set;

/**
 * The persistence interface for the virtual host service.
 *
 * 

* Caching information and settings can be found in portal.properties *

* * @author Brian Wing Shun Chan * @see VirtualHostUtil * @generated */ @ProviderType public interface VirtualHostPersistence extends BasePersistence { /* * NOTE FOR DEVELOPERS: * * Never modify or reference this interface directly. Always use {@link VirtualHostUtil} to access the virtual host persistence. Modify service.xml and rerun ServiceBuilder to regenerate this interface. */ @Override public Map fetchByPrimaryKeys( Set primaryKeys); /** * Returns the virtual host where hostname = ? or throws a NoSuchVirtualHostException if it could not be found. * * @param hostname the hostname * @return the matching virtual host * @throws NoSuchVirtualHostException if a matching virtual host could not be found */ public VirtualHost findByHostname(String hostname) throws NoSuchVirtualHostException; /** * Returns the virtual host where hostname = ? or returns null if it could not be found. Uses the finder cache. * * @param hostname the hostname * @return the matching virtual host, or null if a matching virtual host could not be found */ public VirtualHost fetchByHostname(String hostname); /** * Returns the virtual host where hostname = ? or returns null if it could not be found, optionally using the finder cache. * * @param hostname the hostname * @param retrieveFromCache whether to retrieve from the finder cache * @return the matching virtual host, or null if a matching virtual host could not be found */ public VirtualHost fetchByHostname( String hostname, boolean retrieveFromCache); /** * Removes the virtual host where hostname = ? from the database. * * @param hostname the hostname * @return the virtual host that was removed */ public VirtualHost removeByHostname(String hostname) throws NoSuchVirtualHostException; /** * Returns the number of virtual hosts where hostname = ?. * * @param hostname the hostname * @return the number of matching virtual hosts */ public int countByHostname(String hostname); /** * Returns the virtual host where companyId = ? and layoutSetId = ? or throws a NoSuchVirtualHostException if it could not be found. * * @param companyId the company ID * @param layoutSetId the layout set ID * @return the matching virtual host * @throws NoSuchVirtualHostException if a matching virtual host could not be found */ public VirtualHost findByC_L(long companyId, long layoutSetId) throws NoSuchVirtualHostException; /** * Returns the virtual host where companyId = ? and layoutSetId = ? or returns null if it could not be found. Uses the finder cache. * * @param companyId the company ID * @param layoutSetId the layout set ID * @return the matching virtual host, or null if a matching virtual host could not be found */ public VirtualHost fetchByC_L(long companyId, long layoutSetId); /** * Returns the virtual host where companyId = ? and layoutSetId = ? or returns null if it could not be found, optionally using the finder cache. * * @param companyId the company ID * @param layoutSetId the layout set ID * @param retrieveFromCache whether to retrieve from the finder cache * @return the matching virtual host, or null if a matching virtual host could not be found */ public VirtualHost fetchByC_L( long companyId, long layoutSetId, boolean retrieveFromCache); /** * Removes the virtual host where companyId = ? and layoutSetId = ? from the database. * * @param companyId the company ID * @param layoutSetId the layout set ID * @return the virtual host that was removed */ public VirtualHost removeByC_L(long companyId, long layoutSetId) throws NoSuchVirtualHostException; /** * Returns the number of virtual hosts where companyId = ? and layoutSetId = ?. * * @param companyId the company ID * @param layoutSetId the layout set ID * @return the number of matching virtual hosts */ public int countByC_L(long companyId, long layoutSetId); /** * Caches the virtual host in the entity cache if it is enabled. * * @param virtualHost the virtual host */ public void cacheResult(VirtualHost virtualHost); /** * Caches the virtual hosts in the entity cache if it is enabled. * * @param virtualHosts the virtual hosts */ public void cacheResult(java.util.List virtualHosts); /** * Creates a new virtual host with the primary key. Does not add the virtual host to the database. * * @param virtualHostId the primary key for the new virtual host * @return the new virtual host */ public VirtualHost create(long virtualHostId); /** * Removes the virtual host with the primary key from the database. Also notifies the appropriate model listeners. * * @param virtualHostId the primary key of the virtual host * @return the virtual host that was removed * @throws NoSuchVirtualHostException if a virtual host with the primary key could not be found */ public VirtualHost remove(long virtualHostId) throws NoSuchVirtualHostException; public VirtualHost updateImpl(VirtualHost virtualHost); /** * Returns the virtual host with the primary key or throws a NoSuchVirtualHostException if it could not be found. * * @param virtualHostId the primary key of the virtual host * @return the virtual host * @throws NoSuchVirtualHostException if a virtual host with the primary key could not be found */ public VirtualHost findByPrimaryKey(long virtualHostId) throws NoSuchVirtualHostException; /** * Returns the virtual host with the primary key or returns null if it could not be found. * * @param virtualHostId the primary key of the virtual host * @return the virtual host, or null if a virtual host with the primary key could not be found */ public VirtualHost fetchByPrimaryKey(long virtualHostId); /** * Returns all the virtual hosts. * * @return the virtual hosts */ public java.util.List findAll(); /** * Returns a range of all the virtual hosts. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from VirtualHostModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param start the lower bound of the range of virtual hosts * @param end the upper bound of the range of virtual hosts (not inclusive) * @return the range of virtual hosts */ public java.util.List findAll(int start, int end); /** * Returns an ordered range of all the virtual hosts. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from VirtualHostModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param start the lower bound of the range of virtual hosts * @param end the upper bound of the range of virtual hosts (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the ordered range of virtual hosts */ public java.util.List findAll( int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator); /** * Returns an ordered range of all the virtual hosts. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from VirtualHostModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param start the lower bound of the range of virtual hosts * @param end the upper bound of the range of virtual hosts (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @param retrieveFromCache whether to retrieve from the finder cache * @return the ordered range of virtual hosts */ public java.util.List findAll( int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator, boolean retrieveFromCache); /** * Removes all the virtual hosts from the database. */ public void removeAll(); /** * Returns the number of virtual hosts. * * @return the number of virtual hosts */ public int countAll(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy