1
7
8 package com.liferay.client.portal.service.http;
9
10 public interface CountryServiceSoap extends java.rmi.Remote {
11 public com.liferay.client.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;
12 public com.liferay.client.portal.model.CountrySoap[] getCountries() throws java.rmi.RemoteException;
13 public com.liferay.client.portal.model.CountrySoap[] getCountries(boolean active) throws java.rmi.RemoteException;
14 public com.liferay.client.portal.model.CountrySoap getCountry(long countryId) throws java.rmi.RemoteException;
15 }
16