1
7
8 package com.liferay.client.soap.portal.service.http;
9
10 public interface PhoneServiceSoap extends java.rmi.Remote {
11 public com.liferay.client.soap.portal.model.PhoneSoap addPhone(java.lang.String className, long classPK, java.lang.String number, java.lang.String extension, int typeId, boolean primary) throws java.rmi.RemoteException;
12 public void deletePhone(long phoneId) throws java.rmi.RemoteException;
13 public com.liferay.client.soap.portal.model.PhoneSoap getPhone(long phoneId) throws java.rmi.RemoteException;
14 public com.liferay.client.soap.portal.model.PhoneSoap[] getPhones(java.lang.String className, long classPK) throws java.rmi.RemoteException;
15 public com.liferay.client.soap.portal.model.PhoneSoap updatePhone(long phoneId, java.lang.String number, java.lang.String extension, int typeId, boolean primary) throws java.rmi.RemoteException;
16 }
17