//CConstrainCollectionImpl.java //Gerard Rodriguez, January 1998, Stanford University //This file does not implement a ConstrainCollection. The purpose of this class //is to make the java compiler happy by means of implementing all the //inherited methods in the object type ConstrainCollection. import CosPropertyService.*; import IDLInterchange.*; public class CConstrainCollectionImpl extends IDLInterchange._CConstrainCollectionImplBase { //CosPropertyService.PropertySetImpl public void define_property( java.lang.String property_name, CosPropertyService.Any property_value) throws CosPropertyService.InvalidPropertyName, CosPropertyService.ConflictingProperty, CosPropertyService.UnsupportedTypeCode, CosPropertyService.UnsupportedProperty, CosPropertyService.ReadOnlyProperty { //Not implemented here return; } public void define_properties( CosPropertyService.Property[] nproperties) throws CosPropertyService.MultipleExceptions { //Not implemented here return; } public int get_number_of_properties() { //Not implemented here return(0); } public void get_all_property_names( int how_many, CosPropertyService.PropertyNamesHolder property_names, CosPropertyService.PropertyNamesIteratorHolder rest) { //Not implemented here return; } public CosPropertyService.Any get_property_value( java.lang.String property_name) throws CosPropertyService.PropertyNotFound, CosPropertyService.InvalidPropertyName { //Not implemented here CosPropertyService.Any any = new CosPropertyService.Any(); any.a_long(0); return(any); } public boolean get_properties( java.lang.String[] property_names, CosPropertyService.PropertiesHolder nproperties) { //Not implemented here return(false); } public void get_all_properties( int how_many, CosPropertyService.PropertiesHolder nproperties, CosPropertyService.PropertiesIteratorHolder rest) { //Not implemented here return; } public void delete_property( java.lang.String property_name) throws CosPropertyService.PropertyNotFound, CosPropertyService.InvalidPropertyName, CosPropertyService.FixedProperty { //Not implemented here return; } public void delete_properties( java.lang.String[] property_names) throws CosPropertyService.MultipleExceptions { //Not implemented here return; } public boolean delete_all_properties() { //Not implemented here return(false); } public boolean is_property_defined( java.lang.String property_name) throws CosPropertyService.InvalidPropertyName { //Not implemented here return(false); } //IDLInterchange.CItemImpl public IDLInterchange.TAccessOption GetAccessCapability()[] { //Not implemented here return(null); } public void AddAccessOptions(IDLInterchange.TAccessOption[] pOptions) { //Not implemented here return; } public void RemoveAccessOptions(IDLInterchange.TAccessOption[] pOptions) { //Not implemented here return; } public void RequestItemProperties( CosPropertyService.Any pMessageID, java.lang.String[] pPropertyNames, IDLInterchange.CItem pResultTarget) { //Not implemented here return; } public void SetItemProperties( CosPropertyService.Any pMessageID, CosPropertyService.Property[] pItem) { //Not implemented here return; } public IDLInterchange.EStatus GetStatus( CosPropertyService.Any pMessageID) { //Not implemented here IDLInterchange.EStatus estatus = EStatus.from_int(1); return(estatus); } public void CompletedRequest(CosPropertyService.Any pMessageID) { //Not implemented here return; } public void RaiseException( CosPropertyService.Any pMessageID, IDLInterchange.TException pException) { //Not implemented here return; } public void CancelRequest( CosPropertyService.Any pMessageID) throws IDLInterchange.InvalidMessageID { //Not implemented here return; } //IDLInterchange.CCollectionImpl.java public int GetTotalItems() { //Not implemented here return(0); } public void SetTotalItems(int pTotalSize) { //Not implemented here return; } public IDLInterchange.TItemsACState GetItems( java.lang.String[] pPropertyNames, CosPropertyService.Any pMoreCookie, int pNumberOfItems, IDLInterchange.TAccessCapabilityHolder pNewMoreCookie) throws IDLInterchange.InvalidRequest, IDLInterchange.InvalidProperties, IDLInterchange.InvalidAuthenication, IDLInterchange.InvalidPayment, IDLInterchange.InvalidMoreCookie, IDLInterchange.MultipleExceptions { //Not implemented here return(null); } public void RequestItems( CosPropertyService.Any pMessageID, java.lang.String[] pPropertyNames, CosPropertyService.Any pMoreCookie, int pNumberItems, IDLInterchange.CCollection pResultTarget) { //Not implemented here return; } public void AddItems( CosPropertyService.Any pMessageID, IDLInterchange.TItemsACState pItems, IDLInterchange.TAccessOption[] pNewMoreCookie) { //Not implemented here return; } public IDLInterchange.TItemsState GetItemsProperties( java.lang.String[] pPropertyNames, CosPropertyService.Any[] pServerCookies) throws IDLInterchange.InvalidRequest, IDLInterchange.InvalidAuthenication, IDLInterchange.InvalidPayment, IDLInterchange.InvalidCookies, IDLInterchange.InvalidProperties, IDLInterchange.MultipleExceptions { //Not implemented here return(null); } public void RequestItemsProperties( CosPropertyService.Any pMessageID, java.lang.String[] pPropertyNames, CosPropertyService.Any[] pServerCookies, CosPropertyService.Any[] pClientCookies, IDLInterchange.CCollection pResultTarget) { //Not implemented here return; } public void SetItemsProperties( CosPropertyService.Any pMessageID, IDLInterchange.TItemsCookieState pItems) { //Not implemented here return; } public java.lang.String GetItemsPropertyNames(CosPropertyService.Any[] pCookies)[][] throws IDLInterchange.InvalidRequest, IDLInterchange.InvalidCookies, IDLInterchange.InvalidAuthenication, IDLInterchange.InvalidPayment, IDLInterchange.MultipleExceptions { //Not implemented here return(null); } public void RequestItemsPropertyNames( CosPropertyService.Any pMessageID, CosPropertyService.Any[] pCookies, IDLInterchange.CCollection pResultTarget) { //Not implemented here return; } public void SetItemsPropertyNames( CosPropertyService.Any pMessageID, java.lang.String[][] pNamesList) { //Not implemented here return; } public void RaiseExceptions( CosPropertyService.Any pMessageID, IDLInterchange.TException[] pExceptions) { //Not implemented here return; } public void RemoveItems(CosPropertyService.Any[] pCookies) throws IDLInterchange.InvalidRequest, IDLInterchange.InvalidAuthenication, IDLInterchange.MultipleExceptions { //Not implemented here return; } //CConstrainCollectionImpl.java public CConstrainCollectionImpl () { } public CConstrainCollectionImpl (String name) { super(name); } public IDLInterchange.TItemsACState Constrain( IDLInterchange.TQuerySummary pQuerySummary, IDLInterchange.TServicePrefSummary pServicePrefSummary, org.omg.CORBA.IntHolder pTotalSize, IDLInterchange.TAccessCapabilityHolder pMoreCookie) throws IDLInterchange.InvalidRequest, IDLInterchange.InvalidQuery, IDLInterchange.InvalidAuthenication, IDLInterchange.InvalidPayment, IDLInterchange.MultipleExceptions { //Not implemented here return(null); } public void RequestConstrain( CosPropertyService.Any pMessageID, IDLInterchange.TQuerySummary pQuerySummary, IDLInterchange.TServicePrefSummary pServicePrefSummary, IDLInterchange.CCollection pResultTarget) { //Not implemented here return; } }