1
7
8 package com.liferay.client.soap.portal.service.http;
9
10 public interface CountryServiceSoap extends java.rmi.Remote {
11 public com.liferay.client.soap.portal.model.CountrySoap getCountry(long countryId) throws java.rmi.RemoteException;
12 public com.liferay.client.soap.portal.model.CountrySoap addCountry(java.lang.String name, java.lang.String a2, java.lang.String a3, java.lang.String number, java.lang.String idd, boolean active) throws java.rmi.RemoteException;
13 public com.liferay.client.soap.portal.model.CountrySoap[] getCountries(boolean active) throws java.rmi.RemoteException;
14 public com.liferay.client.soap.portal.model.CountrySoap[] getCountries() throws java.rmi.RemoteException;
15 public com.liferay.client.soap.portal.model.CountrySoap getCountryByA2(java.lang.String a2) throws java.rmi.RemoteException;
16 public com.liferay.client.soap.portal.model.CountrySoap getCountryByA3(java.lang.String a3) throws java.rmi.RemoteException;
17 public com.liferay.client.soap.portal.model.CountrySoap getCountryByName(java.lang.String name) throws java.rmi.RemoteException;
18 }
19