index int64 0 0 | repo_id stringlengths 9 205 | file_path stringlengths 31 246 | content stringlengths 1 12.2M | __index_level_0__ int64 0 10k |
|---|---|---|---|---|
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/PortableInterceptor/ForwardRequestHolder.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.PortableInterceptor;
//
// IDL:omg.org/PortableInterceptor/ForwardRequest:1.0
//
final public class ForwardRequestHolder implements org.omg.CORBA.portable.Streamable
{
public ForwardRequest value;
public
ForwardRequestHolder()
{
}
public
ForwardRequestHolder(ForwardRequest initial)
{
value = initial;
}
public void
_read(org.omg.CORBA.portable.InputStream in)
{
value = ForwardRequestHelper.read(in);
}
public void
_write(org.omg.CORBA.portable.OutputStream out)
{
ForwardRequestHelper.write(out, value);
}
public org.omg.CORBA.TypeCode
_type()
{
return ForwardRequestHelper.type();
}
}
| 4,900 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/PortableInterceptor/ClientRequestInterceptorOperations.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.PortableInterceptor;
//
// IDL:omg.org/PortableInterceptor/ClientRequestInterceptor:1.0
//
/***/
public interface ClientRequestInterceptorOperations extends InterceptorOperations
{
//
// IDL:omg.org/PortableInterceptor/ClientRequestInterceptor/send_request:1.0
//
/***/
void
send_request(ClientRequestInfo ri)
throws ForwardRequest;
//
// IDL:omg.org/PortableInterceptor/ClientRequestInterceptor/send_poll:1.0
//
/***/
void
send_poll(ClientRequestInfo ri);
//
// IDL:omg.org/PortableInterceptor/ClientRequestInterceptor/receive_reply:1.0
//
/***/
void
receive_reply(ClientRequestInfo ri);
//
// IDL:omg.org/PortableInterceptor/ClientRequestInterceptor/receive_exception:1.0
//
/***/
void
receive_exception(ClientRequestInfo ri)
throws ForwardRequest;
//
// IDL:omg.org/PortableInterceptor/ClientRequestInterceptor/receive_other:1.0
//
/***/
void
receive_other(ClientRequestInfo ri)
throws ForwardRequest;
}
| 4,901 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/PortableInterceptor/ForwardRequestHelper.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.PortableInterceptor;
//
// IDL:omg.org/PortableInterceptor/ForwardRequest:1.0
//
public class ForwardRequestHelper
{
public static void
insert(org.omg.CORBA.Any any, ForwardRequest val)
{
org.omg.CORBA.portable.OutputStream out = any.create_output_stream();
write(out, val);
any.read_value(out.create_input_stream(), type());
}
public static ForwardRequest
extract(org.omg.CORBA.Any any)
{
if(any.type().equivalent(type()))
return read(any.create_input_stream());
else
throw new org.omg.CORBA.BAD_OPERATION();
}
private static org.omg.CORBA.TypeCode typeCode_;
public static org.omg.CORBA.TypeCode
type()
{
if(typeCode_ == null)
{
org.omg.CORBA.ORB orb = org.omg.CORBA.ORB.init();
org.omg.CORBA.StructMember[] members = new org.omg.CORBA.StructMember[1];
members[0] = new org.omg.CORBA.StructMember();
members[0].name = "forward";
members[0].type = orb.create_interface_tc("IDL:omg.org/CORBA/Object:1.0", "Object");
typeCode_ = orb.create_exception_tc(id(), "ForwardRequest", members);
}
return typeCode_;
}
public static String
id()
{
return "IDL:omg.org/PortableInterceptor/ForwardRequest:1.0";
}
public static ForwardRequest
read(org.omg.CORBA.portable.InputStream in)
{
if(!id().equals(in.read_string()))
throw new org.omg.CORBA.MARSHAL();
ForwardRequest _ob_v = new ForwardRequest();
_ob_v.forward = in.read_Object();
return _ob_v;
}
public static void
write(org.omg.CORBA.portable.OutputStream out, ForwardRequest val)
{
out.write_string(id());
out.write_Object(val.forward);
}
}
| 4,902 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/PortableInterceptor/IORInterceptor_3_0Helper.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.PortableInterceptor;
//
// IDL:omg.org/PortableInterceptor/IORInterceptor_3_0:1.0
//
public class IORInterceptor_3_0Helper
{
public static void
insert(org.omg.CORBA.Any any, IORInterceptor_3_0 val)
{
any.insert_Object(val, type());
}
public static IORInterceptor_3_0
extract(org.omg.CORBA.Any any)
{
if(any.type().equivalent(type()))
return narrow(any.extract_Object());
throw new org.omg.CORBA.BAD_OPERATION();
}
private static org.omg.CORBA.TypeCode typeCode_;
public static org.omg.CORBA.TypeCode
type()
{
if(typeCode_ == null)
{
org.omg.CORBA.ORB orb = org.omg.CORBA.ORB.init();
typeCode_ = ((org.omg.CORBA_2_4.ORB)orb).create_local_interface_tc(id(), "IORInterceptor_3_0");
}
return typeCode_;
}
public static String
id()
{
return "IDL:omg.org/PortableInterceptor/IORInterceptor_3_0:1.0";
}
public static IORInterceptor_3_0
read(org.omg.CORBA.portable.InputStream in)
{
throw new org.omg.CORBA.MARSHAL();
}
public static void
write(org.omg.CORBA.portable.OutputStream out, IORInterceptor_3_0 val)
{
throw new org.omg.CORBA.MARSHAL();
}
public static IORInterceptor_3_0
narrow(org.omg.CORBA.Object val)
{
try
{
return (IORInterceptor_3_0)val;
}
catch(ClassCastException ex)
{
}
throw new org.omg.CORBA.BAD_PARAM();
}
public static IORInterceptor_3_0
unchecked_narrow(org.omg.CORBA.Object val)
{
try
{
return (IORInterceptor_3_0)val;
}
catch(ClassCastException ex)
{
}
throw new org.omg.CORBA.BAD_PARAM();
}
}
| 4,903 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/PortableInterceptor/ServerRequestInfoOperations.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.PortableInterceptor;
//
// IDL:omg.org/PortableInterceptor/ServerRequestInfo:1.0
//
/***/
public interface ServerRequestInfoOperations extends RequestInfoOperations
{
//
// IDL:omg.org/PortableInterceptor/ServerRequestInfo/sending_exception:1.0
//
/***/
org.omg.CORBA.Any
sending_exception();
//
// IDL:omg.org/PortableInterceptor/ServerRequestInfo/object_id:1.0
//
/***/
byte[]
object_id();
//
// IDL:omg.org/PortableInterceptor/ServerRequestInfo/adapter_id:1.0
//
/***/
byte[]
adapter_id();
//
// IDL:omg.org/PortableInterceptor/ServerRequestInfo/target_most_derived_interface:1.0
//
/***/
String
target_most_derived_interface();
//
// IDL:omg.org/PortableInterceptor/ServerRequestInfo/server_id:1.0
//
/***/
String
server_id();
//
// IDL:omg.org/PortableInterceptor/ServerRequestInfo/orb_id:1.0
//
/***/
String
orb_id();
//
// IDL:omg.org/PortableInterceptor/ServerRequestInfo/adapter_name:1.0
//
/***/
String[]
adapter_name();
//
// IDL:omg.org/PortableInterceptor/ServerRequestInfo/get_server_policy:1.0
//
/***/
org.omg.CORBA.Policy
get_server_policy(int type);
//
// IDL:omg.org/PortableInterceptor/ServerRequestInfo/set_slot:1.0
//
/***/
void
set_slot(int id,
org.omg.CORBA.Any data)
throws InvalidSlot;
//
// IDL:omg.org/PortableInterceptor/ServerRequestInfo/target_is_a:1.0
//
/***/
boolean
target_is_a(String id);
//
// IDL:omg.org/PortableInterceptor/ServerRequestInfo/add_reply_service_context:1.0
//
/***/
void
add_reply_service_context(org.omg.IOP.ServiceContext service_context,
boolean replace);
}
| 4,904 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/PortableInterceptor/ORBInitializerHolder.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.PortableInterceptor;
//
// IDL:omg.org/PortableInterceptor/ORBInitializer:1.0
//
final public class ORBInitializerHolder implements org.omg.CORBA.portable.Streamable
{
public ORBInitializer value;
public
ORBInitializerHolder()
{
}
public
ORBInitializerHolder(ORBInitializer initial)
{
value = initial;
}
public void
_read(org.omg.CORBA.portable.InputStream in)
{
value = ORBInitializerHelper.read(in);
}
public void
_write(org.omg.CORBA.portable.OutputStream out)
{
ORBInitializerHelper.write(out, value);
}
public org.omg.CORBA.TypeCode
_type()
{
return ORBInitializerHelper.type();
}
}
| 4,905 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/PortableInterceptor/ForwardRequest.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.PortableInterceptor;
//
// IDL:omg.org/PortableInterceptor/ForwardRequest:1.0
//
/***/
final public class ForwardRequest extends org.omg.CORBA.UserException
{
private static final String _ob_id = "IDL:omg.org/PortableInterceptor/ForwardRequest:1.0";
public
ForwardRequest()
{
super(_ob_id);
}
public
ForwardRequest(org.omg.CORBA.Object forward)
{
super(_ob_id);
this.forward = forward;
}
public
ForwardRequest(String _reason,
org.omg.CORBA.Object forward)
{
super(_ob_id + " " + _reason);
this.forward = forward;
}
public org.omg.CORBA.Object forward;
}
| 4,906 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/PortableInterceptor/ClientRequestInfoHelper.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.PortableInterceptor;
//
// IDL:omg.org/PortableInterceptor/ClientRequestInfo:1.0
//
public class ClientRequestInfoHelper
{
public static void
insert(org.omg.CORBA.Any any, ClientRequestInfo val)
{
any.insert_Object(val, type());
}
public static ClientRequestInfo
extract(org.omg.CORBA.Any any)
{
if(any.type().equivalent(type()))
return narrow(any.extract_Object());
throw new org.omg.CORBA.BAD_OPERATION();
}
private static org.omg.CORBA.TypeCode typeCode_;
public static org.omg.CORBA.TypeCode
type()
{
if(typeCode_ == null)
{
org.omg.CORBA.ORB orb = org.omg.CORBA.ORB.init();
typeCode_ = ((org.omg.CORBA_2_4.ORB)orb).create_local_interface_tc(id(), "ClientRequestInfo");
}
return typeCode_;
}
public static String
id()
{
return "IDL:omg.org/PortableInterceptor/ClientRequestInfo:1.0";
}
public static ClientRequestInfo
read(org.omg.CORBA.portable.InputStream in)
{
throw new org.omg.CORBA.MARSHAL();
}
public static void
write(org.omg.CORBA.portable.OutputStream out, ClientRequestInfo val)
{
throw new org.omg.CORBA.MARSHAL();
}
public static ClientRequestInfo
narrow(org.omg.CORBA.Object val)
{
try
{
return (ClientRequestInfo)val;
}
catch(ClassCastException ex)
{
}
throw new org.omg.CORBA.BAD_PARAM();
}
}
| 4,907 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/PortableInterceptor/ServerRequestInfo.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.PortableInterceptor;
//
// IDL:omg.org/PortableInterceptor/ServerRequestInfo:1.0
//
/***/
public interface ServerRequestInfo extends ServerRequestInfoOperations,
RequestInfo
{
}
| 4,908 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/PortableInterceptor/ObjectReferenceFactoryHolder.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.PortableInterceptor;
//
// IDL:omg.org/PortableInterceptor/ObjectReferenceFactory:1.0
//
final public class ObjectReferenceFactoryHolder implements org.omg.CORBA.portable.Streamable
{
public ObjectReferenceFactory value;
public
ObjectReferenceFactoryHolder()
{
}
public
ObjectReferenceFactoryHolder(ObjectReferenceFactory initial)
{
value = initial;
}
public void
_read(org.omg.CORBA.portable.InputStream in)
{
value = ObjectReferenceFactoryHelper.read(in);
}
public void
_write(org.omg.CORBA.portable.OutputStream out)
{
ObjectReferenceFactoryHelper.write(out, value);
}
public org.omg.CORBA.TypeCode
_type()
{
return ObjectReferenceFactoryHelper.type();
}
}
| 4,909 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/PortableInterceptor/PolicyFactory.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.PortableInterceptor;
//
// IDL:omg.org/PortableInterceptor/PolicyFactory:1.0
//
/***/
public interface PolicyFactory extends PolicyFactoryOperations,
org.omg.CORBA.Object,
org.omg.CORBA.portable.IDLEntity
{
}
| 4,910 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/PortableInterceptor/ACTIVE.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.PortableInterceptor;
//
// IDL:omg.org/PortableInterceptor/ACTIVE:1.0
//
/***/
public interface ACTIVE
{
short value = (short)(1L);
}
| 4,911 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/PortableInterceptor/ClientRequestInterceptor.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.PortableInterceptor;
//
// IDL:omg.org/PortableInterceptor/ClientRequestInterceptor:1.0
//
/***/
public interface ClientRequestInterceptor extends ClientRequestInterceptorOperations,
Interceptor
{
}
| 4,912 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/PortableInterceptor/ORBInitializer.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.PortableInterceptor;
//
// IDL:omg.org/PortableInterceptor/ORBInitializer:1.0
//
/***/
public interface ORBInitializer extends ORBInitializerOperations,
org.omg.CORBA.Object,
org.omg.CORBA.portable.IDLEntity
{
}
| 4,913 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/PortableInterceptor/IORInterceptorOperations.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.PortableInterceptor;
//
// IDL:omg.org/PortableInterceptor/IORInterceptor:1.0
//
/***/
public interface IORInterceptorOperations extends InterceptorOperations
{
//
// IDL:omg.org/PortableInterceptor/IORInterceptor/establish_components:1.0
//
/***/
void
establish_components(IORInfo info);
}
| 4,914 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/PortableInterceptor/InterceptorOperations.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.PortableInterceptor;
//
// IDL:omg.org/PortableInterceptor/Interceptor:1.0
//
/***/
public interface InterceptorOperations
{
//
// IDL:omg.org/PortableInterceptor/Interceptor/name:1.0
//
/***/
String
name();
//
// IDL:omg.org/PortableInterceptor/Interceptor/destroy:1.0
//
/***/
void
destroy();
}
| 4,915 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/PortableInterceptor/ClientRequestInfoHolder.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.PortableInterceptor;
//
// IDL:omg.org/PortableInterceptor/ClientRequestInfo:1.0
//
final public class ClientRequestInfoHolder implements org.omg.CORBA.portable.Streamable
{
public ClientRequestInfo value;
public
ClientRequestInfoHolder()
{
}
public
ClientRequestInfoHolder(ClientRequestInfo initial)
{
value = initial;
}
public void
_read(org.omg.CORBA.portable.InputStream in)
{
value = ClientRequestInfoHelper.read(in);
}
public void
_write(org.omg.CORBA.portable.OutputStream out)
{
ClientRequestInfoHelper.write(out, value);
}
public org.omg.CORBA.TypeCode
_type()
{
return ClientRequestInfoHelper.type();
}
}
| 4,916 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/PortableInterceptor/ObjectReferenceFactoryHelper.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.PortableInterceptor;
//
// IDL:omg.org/PortableInterceptor/ObjectReferenceFactory:1.0
//
public class ObjectReferenceFactoryHelper
{
public static void
insert(org.omg.CORBA.Any any, ObjectReferenceFactory val)
{
any.insert_Value(val, type());
}
public static ObjectReferenceFactory
extract(org.omg.CORBA.Any any)
{
if(any.type().equivalent(type()))
{
java.io.Serializable _ob_v = any.extract_Value();
if(_ob_v == null || _ob_v instanceof ObjectReferenceFactory)
return (ObjectReferenceFactory)_ob_v;
}
throw new org.omg.CORBA.BAD_OPERATION();
}
private static org.omg.CORBA.TypeCode typeCode_;
public static org.omg.CORBA.TypeCode
type()
{
if(typeCode_ == null)
{
org.omg.CORBA.ORB orb = org.omg.CORBA.ORB.init();
org.omg.CORBA.ValueMember[] members = new org.omg.CORBA.ValueMember[0];
typeCode_ = orb.create_value_tc(id(), "ObjectReferenceFactory", org.omg.CORBA.VM_ABSTRACT.value, null, members);
}
return typeCode_;
}
public static String
id()
{
return "IDL:omg.org/PortableInterceptor/ObjectReferenceFactory:1.0";
}
public static ObjectReferenceFactory
read(org.omg.CORBA.portable.InputStream in)
{
if(!(in instanceof org.omg.CORBA_2_3.portable.InputStream))
throw new org.omg.CORBA.BAD_PARAM();
return (ObjectReferenceFactory)((org.omg.CORBA_2_3.portable.InputStream)in).read_value(id());
}
public static void
write(org.omg.CORBA.portable.OutputStream out, ObjectReferenceFactory val)
{
if(!(out instanceof org.omg.CORBA_2_3.portable.OutputStream))
throw new org.omg.CORBA.BAD_PARAM();
((org.omg.CORBA_2_3.portable.OutputStream)out).write_value(val, id());
}
}
| 4,917 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/PortableInterceptor/IORInterceptor.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.PortableInterceptor;
//
// IDL:omg.org/PortableInterceptor/IORInterceptor:1.0
//
/***/
public interface IORInterceptor extends IORInterceptorOperations,
Interceptor
{
}
| 4,918 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/PortableInterceptor/AdapterNameHelper.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.PortableInterceptor;
//
// IDL:omg.org/PortableInterceptor/AdapterName:1.0
//
public class AdapterNameHelper
{
public static void
insert(org.omg.CORBA.Any any, String[] val)
{
org.omg.CORBA.portable.OutputStream out = any.create_output_stream();
write(out, val);
any.read_value(out.create_input_stream(), type());
}
public static String[]
extract(org.omg.CORBA.Any any)
{
if(any.type().equivalent(type()))
return read(any.create_input_stream());
else
throw new org.omg.CORBA.BAD_OPERATION();
}
private static org.omg.CORBA.TypeCode typeCode_;
public static org.omg.CORBA.TypeCode
type()
{
if(typeCode_ == null)
{
org.omg.CORBA.ORB orb = org.omg.CORBA.ORB.init();
typeCode_ = orb.create_alias_tc(id(), "AdapterName", org.omg.CORBA.StringSeqHelper.type());
}
return typeCode_;
}
public static String
id()
{
return "IDL:omg.org/PortableInterceptor/AdapterName:1.0";
}
public static String[]
read(org.omg.CORBA.portable.InputStream in)
{
String[] _ob_v;
_ob_v = org.omg.CORBA.StringSeqHelper.read(in);
return _ob_v;
}
public static void
write(org.omg.CORBA.portable.OutputStream out, String[] val)
{
org.omg.CORBA.StringSeqHelper.write(out, val);
}
}
| 4,919 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/PortableInterceptor/IORInterceptorHolder.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.PortableInterceptor;
//
// IDL:omg.org/PortableInterceptor/IORInterceptor:1.0
//
final public class IORInterceptorHolder implements org.omg.CORBA.portable.Streamable
{
public IORInterceptor value;
public
IORInterceptorHolder()
{
}
public
IORInterceptorHolder(IORInterceptor initial)
{
value = initial;
}
public void
_read(org.omg.CORBA.portable.InputStream in)
{
value = IORInterceptorHelper.read(in);
}
public void
_write(org.omg.CORBA.portable.OutputStream out)
{
IORInterceptorHelper.write(out, value);
}
public org.omg.CORBA.TypeCode
_type()
{
return IORInterceptorHelper.type();
}
}
| 4,920 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/PortableInterceptor/ClientRequestInfoOperations.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.PortableInterceptor;
//
// IDL:omg.org/PortableInterceptor/ClientRequestInfo:1.0
//
/***/
public interface ClientRequestInfoOperations extends RequestInfoOperations
{
//
// IDL:omg.org/PortableInterceptor/ClientRequestInfo/target:1.0
//
/***/
org.omg.CORBA.Object
target();
//
// IDL:omg.org/PortableInterceptor/ClientRequestInfo/effective_target:1.0
//
/***/
org.omg.CORBA.Object
effective_target();
//
// IDL:omg.org/PortableInterceptor/ClientRequestInfo/effective_profile:1.0
//
/***/
org.omg.IOP.TaggedProfile
effective_profile();
//
// IDL:omg.org/PortableInterceptor/ClientRequestInfo/received_exception:1.0
//
/***/
org.omg.CORBA.Any
received_exception();
//
// IDL:omg.org/PortableInterceptor/ClientRequestInfo/received_exception_id:1.0
//
/***/
String
received_exception_id();
//
// IDL:omg.org/PortableInterceptor/ClientRequestInfo/get_effective_component:1.0
//
/***/
org.omg.IOP.TaggedComponent
get_effective_component(int id);
//
// IDL:omg.org/PortableInterceptor/ClientRequestInfo/get_effective_components:1.0
//
/***/
org.omg.IOP.TaggedComponent[]
get_effective_components(int id);
//
// IDL:omg.org/PortableInterceptor/ClientRequestInfo/get_request_policy:1.0
//
/***/
org.omg.CORBA.Policy
get_request_policy(int type);
//
// IDL:omg.org/PortableInterceptor/ClientRequestInfo/add_request_service_context:1.0
//
/***/
void
add_request_service_context(org.omg.IOP.ServiceContext service_context,
boolean replace);
}
| 4,921 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/PortableInterceptor/InterceptorHelper.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.PortableInterceptor;
//
// IDL:omg.org/PortableInterceptor/Interceptor:1.0
//
public class InterceptorHelper
{
public static void
insert(org.omg.CORBA.Any any, Interceptor val)
{
any.insert_Object(val, type());
}
public static Interceptor
extract(org.omg.CORBA.Any any)
{
if(any.type().equivalent(type()))
return narrow(any.extract_Object());
throw new org.omg.CORBA.BAD_OPERATION();
}
private static org.omg.CORBA.TypeCode typeCode_;
public static org.omg.CORBA.TypeCode
type()
{
if(typeCode_ == null)
{
org.omg.CORBA.ORB orb = org.omg.CORBA.ORB.init();
typeCode_ = ((org.omg.CORBA_2_4.ORB)orb).create_local_interface_tc(id(), "Interceptor");
}
return typeCode_;
}
public static String
id()
{
return "IDL:omg.org/PortableInterceptor/Interceptor:1.0";
}
public static Interceptor
read(org.omg.CORBA.portable.InputStream in)
{
throw new org.omg.CORBA.MARSHAL();
}
public static void
write(org.omg.CORBA.portable.OutputStream out, Interceptor val)
{
throw new org.omg.CORBA.MARSHAL();
}
public static Interceptor
narrow(org.omg.CORBA.Object val)
{
try
{
return (Interceptor)val;
}
catch(ClassCastException ex)
{
}
throw new org.omg.CORBA.BAD_PARAM();
}
}
| 4,922 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/PortableInterceptor/PolicyFactoryOperations.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.PortableInterceptor;
//
// IDL:omg.org/PortableInterceptor/PolicyFactory:1.0
//
/***/
public interface PolicyFactoryOperations
{
//
// IDL:omg.org/PortableInterceptor/PolicyFactory/create_policy:1.0
//
/***/
org.omg.CORBA.Policy
create_policy(int type,
org.omg.CORBA.Any value)
throws org.omg.CORBA.PolicyError;
}
| 4,923 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/PortableInterceptor/RequestInfoOperations.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.PortableInterceptor;
//
// IDL:omg.org/PortableInterceptor/RequestInfo:1.0
//
/***/
public interface RequestInfoOperations
{
//
// IDL:omg.org/PortableInterceptor/RequestInfo/request_id:1.0
//
/***/
int
request_id();
//
// IDL:omg.org/PortableInterceptor/RequestInfo/operation:1.0
//
/***/
String
operation();
//
// IDL:omg.org/PortableInterceptor/RequestInfo/arguments:1.0
//
/***/
org.omg.Dynamic.Parameter[]
arguments();
//
// IDL:omg.org/PortableInterceptor/RequestInfo/exceptions:1.0
//
/***/
org.omg.CORBA.TypeCode[]
exceptions();
//
// IDL:omg.org/PortableInterceptor/RequestInfo/contexts:1.0
//
/***/
String[]
contexts();
//
// IDL:omg.org/PortableInterceptor/RequestInfo/operation_context:1.0
//
/***/
String[]
operation_context();
//
// IDL:omg.org/PortableInterceptor/RequestInfo/result:1.0
//
/***/
org.omg.CORBA.Any
result();
//
// IDL:omg.org/PortableInterceptor/RequestInfo/response_expected:1.0
//
/***/
boolean
response_expected();
//
// IDL:omg.org/PortableInterceptor/RequestInfo/sync_scope:1.0
//
/***/
short
sync_scope();
//
// IDL:omg.org/PortableInterceptor/RequestInfo/reply_status:1.0
//
/***/
short
reply_status();
//
// IDL:omg.org/PortableInterceptor/RequestInfo/forward_reference:1.0
//
/***/
org.omg.CORBA.Object
forward_reference();
//
// IDL:omg.org/PortableInterceptor/RequestInfo/get_slot:1.0
//
/***/
org.omg.CORBA.Any
get_slot(int id)
throws InvalidSlot;
//
// IDL:omg.org/PortableInterceptor/RequestInfo/get_request_service_context:1.0
//
/***/
org.omg.IOP.ServiceContext
get_request_service_context(int id);
//
// IDL:omg.org/PortableInterceptor/RequestInfo/get_reply_service_context:1.0
//
/***/
org.omg.IOP.ServiceContext
get_reply_service_context(int id);
}
| 4,924 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/PortableInterceptor/ObjectReferenceTemplateHelper.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.PortableInterceptor;
//
// IDL:omg.org/PortableInterceptor/ObjectReferenceTemplate:1.0
//
public class ObjectReferenceTemplateHelper
{
public static void
insert(org.omg.CORBA.Any any, ObjectReferenceTemplate val)
{
any.insert_Value(val, type());
}
public static ObjectReferenceTemplate
extract(org.omg.CORBA.Any any)
{
if(any.type().equivalent(type()))
{
java.io.Serializable _ob_v = any.extract_Value();
if(_ob_v == null || _ob_v instanceof ObjectReferenceTemplate)
return (ObjectReferenceTemplate)_ob_v;
}
throw new org.omg.CORBA.BAD_OPERATION();
}
private static org.omg.CORBA.TypeCode typeCode_;
public static org.omg.CORBA.TypeCode
type()
{
if(typeCode_ == null)
{
org.omg.CORBA.ORB orb = org.omg.CORBA.ORB.init();
org.omg.CORBA.ValueMember[] members = new org.omg.CORBA.ValueMember[0];
typeCode_ = orb.create_value_tc(id(), "ObjectReferenceTemplate", org.omg.CORBA.VM_ABSTRACT.value, null, members);
}
return typeCode_;
}
public static String
id()
{
return "IDL:omg.org/PortableInterceptor/ObjectReferenceTemplate:1.0";
}
public static ObjectReferenceTemplate
read(org.omg.CORBA.portable.InputStream in)
{
if(!(in instanceof org.omg.CORBA_2_3.portable.InputStream))
throw new org.omg.CORBA.BAD_PARAM();
return (ObjectReferenceTemplate)((org.omg.CORBA_2_3.portable.InputStream)in).read_value(id());
}
public static void
write(org.omg.CORBA.portable.OutputStream out, ObjectReferenceTemplate val)
{
if(!(out instanceof org.omg.CORBA_2_3.portable.OutputStream))
throw new org.omg.CORBA.BAD_PARAM();
((org.omg.CORBA_2_3.portable.OutputStream)out).write_value(val, id());
}
}
| 4,925 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/PortableInterceptor/CurrentHelper.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.PortableInterceptor;
//
// IDL:omg.org/PortableInterceptor/Current:1.0
//
public class CurrentHelper
{
public static void
insert(org.omg.CORBA.Any any, Current val)
{
any.insert_Object(val, type());
}
public static Current
extract(org.omg.CORBA.Any any)
{
if(any.type().equivalent(type()))
return narrow(any.extract_Object());
throw new org.omg.CORBA.BAD_OPERATION();
}
private static org.omg.CORBA.TypeCode typeCode_;
public static org.omg.CORBA.TypeCode
type()
{
if(typeCode_ == null)
{
org.omg.CORBA.ORB orb = org.omg.CORBA.ORB.init();
typeCode_ = ((org.omg.CORBA_2_4.ORB)orb).create_local_interface_tc(id(), "Current");
}
return typeCode_;
}
public static String
id()
{
return "IDL:omg.org/PortableInterceptor/Current:1.0";
}
public static Current
read(org.omg.CORBA.portable.InputStream in)
{
throw new org.omg.CORBA.MARSHAL();
}
public static void
write(org.omg.CORBA.portable.OutputStream out, Current val)
{
throw new org.omg.CORBA.MARSHAL();
}
public static Current
narrow(org.omg.CORBA.Object val)
{
try
{
return (Current)val;
}
catch(ClassCastException ex)
{
}
throw new org.omg.CORBA.BAD_PARAM();
}
public static Current
unchecked_narrow(org.omg.CORBA.Object val)
{
try
{
return (Current)val;
}
catch(ClassCastException ex)
{
}
throw new org.omg.CORBA.BAD_PARAM();
}
}
| 4,926 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/PortableInterceptor/ObjectReferenceTemplateHolder.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.PortableInterceptor;
//
// IDL:omg.org/PortableInterceptor/ObjectReferenceTemplate:1.0
//
final public class ObjectReferenceTemplateHolder implements org.omg.CORBA.portable.Streamable
{
public ObjectReferenceTemplate value;
public
ObjectReferenceTemplateHolder()
{
}
public
ObjectReferenceTemplateHolder(ObjectReferenceTemplate initial)
{
value = initial;
}
public void
_read(org.omg.CORBA.portable.InputStream in)
{
value = ObjectReferenceTemplateHelper.read(in);
}
public void
_write(org.omg.CORBA.portable.OutputStream out)
{
ObjectReferenceTemplateHelper.write(out, value);
}
public org.omg.CORBA.TypeCode
_type()
{
return ObjectReferenceTemplateHelper.type();
}
}
| 4,927 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/PortableInterceptor/CurrentHolder.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.PortableInterceptor;
//
// IDL:omg.org/PortableInterceptor/Current:1.0
//
final public class CurrentHolder implements org.omg.CORBA.portable.Streamable
{
public Current value;
public
CurrentHolder()
{
}
public
CurrentHolder(Current initial)
{
value = initial;
}
public void
_read(org.omg.CORBA.portable.InputStream in)
{
value = CurrentHelper.read(in);
}
public void
_write(org.omg.CORBA.portable.OutputStream out)
{
CurrentHelper.write(out, value);
}
public org.omg.CORBA.TypeCode
_type()
{
return CurrentHelper.type();
}
}
| 4,928 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/PortableInterceptor/InterceptorHolder.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.PortableInterceptor;
//
// IDL:omg.org/PortableInterceptor/Interceptor:1.0
//
final public class InterceptorHolder implements org.omg.CORBA.portable.Streamable
{
public Interceptor value;
public
InterceptorHolder()
{
}
public
InterceptorHolder(Interceptor initial)
{
value = initial;
}
public void
_read(org.omg.CORBA.portable.InputStream in)
{
value = InterceptorHelper.read(in);
}
public void
_write(org.omg.CORBA.portable.OutputStream out)
{
InterceptorHelper.write(out, value);
}
public org.omg.CORBA.TypeCode
_type()
{
return InterceptorHelper.type();
}
}
| 4,929 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/PortableInterceptor/ObjectReferenceFactory.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.PortableInterceptor;
//
// IDL:omg.org/PortableInterceptor/ObjectReferenceFactory:1.0
//
/***/
public interface ObjectReferenceFactory extends org.omg.CORBA.portable.ValueBase
{
//
// IDL:omg.org/PortableInterceptor/ObjectReferenceFactory/make_object:1.0
//
/***/
org.omg.CORBA.Object
make_object(String repositoryId,
byte[] id);
}
| 4,930 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/PortableInterceptor/IORInterceptorHelper.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.PortableInterceptor;
//
// IDL:omg.org/PortableInterceptor/IORInterceptor:1.0
//
public class IORInterceptorHelper
{
public static void
insert(org.omg.CORBA.Any any, IORInterceptor val)
{
any.insert_Object(val, type());
}
public static IORInterceptor
extract(org.omg.CORBA.Any any)
{
if(any.type().equivalent(type()))
return narrow(any.extract_Object());
throw new org.omg.CORBA.BAD_OPERATION();
}
private static org.omg.CORBA.TypeCode typeCode_;
public static org.omg.CORBA.TypeCode
type()
{
if(typeCode_ == null)
{
org.omg.CORBA.ORB orb = org.omg.CORBA.ORB.init();
typeCode_ = ((org.omg.CORBA_2_4.ORB)orb).create_local_interface_tc(id(), "IORInterceptor");
}
return typeCode_;
}
public static String
id()
{
return "IDL:omg.org/PortableInterceptor/IORInterceptor:1.0";
}
public static IORInterceptor
read(org.omg.CORBA.portable.InputStream in)
{
throw new org.omg.CORBA.MARSHAL();
}
public static void
write(org.omg.CORBA.portable.OutputStream out, IORInterceptor val)
{
throw new org.omg.CORBA.MARSHAL();
}
public static IORInterceptor
narrow(org.omg.CORBA.Object val)
{
try
{
return (IORInterceptor)val;
}
catch(ClassCastException ex)
{
}
throw new org.omg.CORBA.BAD_PARAM();
}
}
| 4,931 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/PortableInterceptor/ORBInitInfo.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.PortableInterceptor;
//
// IDL:omg.org/PortableInterceptor/ORBInitInfo:1.0
//
/***/
public interface ORBInitInfo extends ORBInitInfoOperations,
org.omg.CORBA.Object,
org.omg.CORBA.portable.IDLEntity
{
}
| 4,932 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/PortableInterceptor/IORInfo.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.PortableInterceptor;
//
// IDL:omg.org/PortableInterceptor/IORInfo:1.0
//
/***/
public interface IORInfo extends IORInfoOperations,
org.omg.CORBA.Object,
org.omg.CORBA.portable.IDLEntity
{
}
| 4,933 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/PortableInterceptor/ClientRequestInfo.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.PortableInterceptor;
//
// IDL:omg.org/PortableInterceptor/ClientRequestInfo:1.0
//
/***/
public interface ClientRequestInfo extends ClientRequestInfoOperations,
RequestInfo
{
}
| 4,934 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/PortableInterceptor/ClientRequestInterceptorHolder.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.PortableInterceptor;
//
// IDL:omg.org/PortableInterceptor/ClientRequestInterceptor:1.0
//
final public class ClientRequestInterceptorHolder implements org.omg.CORBA.portable.Streamable
{
public ClientRequestInterceptor value;
public
ClientRequestInterceptorHolder()
{
}
public
ClientRequestInterceptorHolder(ClientRequestInterceptor initial)
{
value = initial;
}
public void
_read(org.omg.CORBA.portable.InputStream in)
{
value = ClientRequestInterceptorHelper.read(in);
}
public void
_write(org.omg.CORBA.portable.OutputStream out)
{
ClientRequestInterceptorHelper.write(out, value);
}
public org.omg.CORBA.TypeCode
_type()
{
return ClientRequestInterceptorHelper.type();
}
}
| 4,935 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/PortableInterceptor/ClientRequestInterceptorHelper.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.PortableInterceptor;
//
// IDL:omg.org/PortableInterceptor/ClientRequestInterceptor:1.0
//
public class ClientRequestInterceptorHelper
{
public static void
insert(org.omg.CORBA.Any any, ClientRequestInterceptor val)
{
any.insert_Object(val, type());
}
public static ClientRequestInterceptor
extract(org.omg.CORBA.Any any)
{
if(any.type().equivalent(type()))
return narrow(any.extract_Object());
throw new org.omg.CORBA.BAD_OPERATION();
}
private static org.omg.CORBA.TypeCode typeCode_;
public static org.omg.CORBA.TypeCode
type()
{
if(typeCode_ == null)
{
org.omg.CORBA.ORB orb = org.omg.CORBA.ORB.init();
typeCode_ = ((org.omg.CORBA_2_4.ORB)orb).create_local_interface_tc(id(), "ClientRequestInterceptor");
}
return typeCode_;
}
public static String
id()
{
return "IDL:omg.org/PortableInterceptor/ClientRequestInterceptor:1.0";
}
public static ClientRequestInterceptor
read(org.omg.CORBA.portable.InputStream in)
{
throw new org.omg.CORBA.MARSHAL();
}
public static void
write(org.omg.CORBA.portable.OutputStream out, ClientRequestInterceptor val)
{
throw new org.omg.CORBA.MARSHAL();
}
public static ClientRequestInterceptor
narrow(org.omg.CORBA.Object val)
{
try
{
return (ClientRequestInterceptor)val;
}
catch(ClassCastException ex)
{
}
throw new org.omg.CORBA.BAD_PARAM();
}
}
| 4,936 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/PortableInterceptor | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/PortableInterceptor/ORBInitInfoPackage/InvalidNameHelper.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.PortableInterceptor.ORBInitInfoPackage;
//
// IDL:omg.org/PortableInterceptor/ORBInitInfo/InvalidName:1.0
//
public class InvalidNameHelper
{
public static void
insert(org.omg.CORBA.Any any, InvalidName val)
{
org.omg.CORBA.portable.OutputStream out = any.create_output_stream();
write(out, val);
any.read_value(out.create_input_stream(), type());
}
public static InvalidName
extract(org.omg.CORBA.Any any)
{
if(any.type().equivalent(type()))
return read(any.create_input_stream());
else
throw new org.omg.CORBA.BAD_OPERATION();
}
private static org.omg.CORBA.TypeCode typeCode_;
public static org.omg.CORBA.TypeCode
type()
{
if(typeCode_ == null)
{
org.omg.CORBA.ORB orb = org.omg.CORBA.ORB.init();
org.omg.CORBA.StructMember[] members = new org.omg.CORBA.StructMember[0];
typeCode_ = orb.create_exception_tc(id(), "InvalidName", members);
}
return typeCode_;
}
public static String
id()
{
return "IDL:omg.org/PortableInterceptor/ORBInitInfo/InvalidName:1.0";
}
public static InvalidName
read(org.omg.CORBA.portable.InputStream in)
{
if(!id().equals(in.read_string()))
throw new org.omg.CORBA.MARSHAL();
InvalidName _ob_v = new InvalidName();
return _ob_v;
}
public static void
write(org.omg.CORBA.portable.OutputStream out, InvalidName val)
{
out.write_string(id());
}
}
| 4,937 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/PortableInterceptor | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/PortableInterceptor/ORBInitInfoPackage/InvalidNameHolder.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.PortableInterceptor.ORBInitInfoPackage;
//
// IDL:omg.org/PortableInterceptor/ORBInitInfo/InvalidName:1.0
//
final public class InvalidNameHolder implements org.omg.CORBA.portable.Streamable
{
public InvalidName value;
public
InvalidNameHolder()
{
}
public
InvalidNameHolder(InvalidName initial)
{
value = initial;
}
public void
_read(org.omg.CORBA.portable.InputStream in)
{
value = InvalidNameHelper.read(in);
}
public void
_write(org.omg.CORBA.portable.OutputStream out)
{
InvalidNameHelper.write(out, value);
}
public org.omg.CORBA.TypeCode
_type()
{
return InvalidNameHelper.type();
}
}
| 4,938 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/PortableInterceptor | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/PortableInterceptor/ORBInitInfoPackage/ObjectIdHelper.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.PortableInterceptor.ORBInitInfoPackage;
//
// IDL:omg.org/PortableInterceptor/ORBInitInfo/ObjectId:1.0
//
public class ObjectIdHelper
{
public static void
insert(org.omg.CORBA.Any any, String val)
{
org.omg.CORBA.portable.OutputStream out = any.create_output_stream();
write(out, val);
any.read_value(out.create_input_stream(), type());
}
public static String
extract(org.omg.CORBA.Any any)
{
if(any.type().equivalent(type()))
return read(any.create_input_stream());
else
throw new org.omg.CORBA.BAD_OPERATION();
}
private static org.omg.CORBA.TypeCode typeCode_;
public static org.omg.CORBA.TypeCode
type()
{
if(typeCode_ == null)
{
org.omg.CORBA.ORB orb = org.omg.CORBA.ORB.init();
typeCode_ = orb.create_alias_tc(id(), "ObjectId", orb.get_primitive_tc(org.omg.CORBA.TCKind.tk_string));
}
return typeCode_;
}
public static String
id()
{
return "IDL:omg.org/PortableInterceptor/ORBInitInfo/ObjectId:1.0";
}
public static String
read(org.omg.CORBA.portable.InputStream in)
{
String _ob_v;
_ob_v = in.read_string();
return _ob_v;
}
public static void
write(org.omg.CORBA.portable.OutputStream out, String val)
{
out.write_string(val);
}
}
| 4,939 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/PortableInterceptor | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/PortableInterceptor/ORBInitInfoPackage/InvalidName.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.PortableInterceptor.ORBInitInfoPackage;
//
// IDL:omg.org/PortableInterceptor/ORBInitInfo/InvalidName:1.0
//
/***/
final public class InvalidName extends org.omg.CORBA.UserException
{
private static final String _ob_id = "IDL:omg.org/PortableInterceptor/ORBInitInfo/InvalidName:1.0";
public
InvalidName()
{
super(_ob_id);
}
public
InvalidName(String _reason)
{
super(_ob_id + " " + _reason);
}
}
| 4,940 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/PortableInterceptor | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/PortableInterceptor/ORBInitInfoPackage/DuplicateNameHolder.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.PortableInterceptor.ORBInitInfoPackage;
//
// IDL:omg.org/PortableInterceptor/ORBInitInfo/DuplicateName:1.0
//
final public class DuplicateNameHolder implements org.omg.CORBA.portable.Streamable
{
public DuplicateName value;
public
DuplicateNameHolder()
{
}
public
DuplicateNameHolder(DuplicateName initial)
{
value = initial;
}
public void
_read(org.omg.CORBA.portable.InputStream in)
{
value = DuplicateNameHelper.read(in);
}
public void
_write(org.omg.CORBA.portable.OutputStream out)
{
DuplicateNameHelper.write(out, value);
}
public org.omg.CORBA.TypeCode
_type()
{
return DuplicateNameHelper.type();
}
}
| 4,941 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/PortableInterceptor | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/PortableInterceptor/ORBInitInfoPackage/DuplicateNameHelper.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.PortableInterceptor.ORBInitInfoPackage;
//
// IDL:omg.org/PortableInterceptor/ORBInitInfo/DuplicateName:1.0
//
public class DuplicateNameHelper
{
public static void
insert(org.omg.CORBA.Any any, DuplicateName val)
{
org.omg.CORBA.portable.OutputStream out = any.create_output_stream();
write(out, val);
any.read_value(out.create_input_stream(), type());
}
public static DuplicateName
extract(org.omg.CORBA.Any any)
{
if(any.type().equivalent(type()))
return read(any.create_input_stream());
else
throw new org.omg.CORBA.BAD_OPERATION();
}
private static org.omg.CORBA.TypeCode typeCode_;
public static org.omg.CORBA.TypeCode
type()
{
if(typeCode_ == null)
{
org.omg.CORBA.ORB orb = org.omg.CORBA.ORB.init();
org.omg.CORBA.StructMember[] members = new org.omg.CORBA.StructMember[1];
members[0] = new org.omg.CORBA.StructMember();
members[0].name = "name";
members[0].type = orb.get_primitive_tc(org.omg.CORBA.TCKind.tk_string);
typeCode_ = orb.create_exception_tc(id(), "DuplicateName", members);
}
return typeCode_;
}
public static String
id()
{
return "IDL:omg.org/PortableInterceptor/ORBInitInfo/DuplicateName:1.0";
}
public static DuplicateName
read(org.omg.CORBA.portable.InputStream in)
{
if(!id().equals(in.read_string()))
throw new org.omg.CORBA.MARSHAL();
DuplicateName _ob_v = new DuplicateName();
_ob_v.name = in.read_string();
return _ob_v;
}
public static void
write(org.omg.CORBA.portable.OutputStream out, DuplicateName val)
{
out.write_string(id());
out.write_string(val.name);
}
}
| 4,942 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/PortableInterceptor | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/PortableInterceptor/ORBInitInfoPackage/DuplicateName.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.PortableInterceptor.ORBInitInfoPackage;
//
// IDL:omg.org/PortableInterceptor/ORBInitInfo/DuplicateName:1.0
//
/***/
final public class DuplicateName extends org.omg.CORBA.UserException
{
private static final String _ob_id = "IDL:omg.org/PortableInterceptor/ORBInitInfo/DuplicateName:1.0";
public
DuplicateName()
{
super(_ob_id);
}
public
DuplicateName(String name)
{
super(_ob_id);
this.name = name;
}
public
DuplicateName(String _reason,
String name)
{
super(_ob_id + " " + _reason);
this.name = name;
}
public String name;
}
| 4,943 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/Messaging/_ExceptionHolderHelper.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.Messaging;
//
// IDL:omg.org/Messaging/ExceptionHolder:1.0
//
final public class _ExceptionHolderHelper
{
public static void
insert(org.omg.CORBA.Any any, _ExceptionHolder val)
{
any.insert_Value(val, type());
}
public static _ExceptionHolder
extract(org.omg.CORBA.Any any)
{
if(any.type().equivalent(type()))
{
java.io.Serializable _ob_v = any.extract_Value();
if(_ob_v == null || _ob_v instanceof _ExceptionHolder)
return (_ExceptionHolder)_ob_v;
}
throw new org.omg.CORBA.BAD_OPERATION();
}
private static org.omg.CORBA.TypeCode typeCode_;
public static org.omg.CORBA.TypeCode
type()
{
if(typeCode_ == null)
{
org.omg.CORBA.ORB orb = org.omg.CORBA.ORB.init();
org.omg.CORBA.ValueMember[] members = new org.omg.CORBA.ValueMember[3];
members[0] = new org.omg.CORBA.ValueMember();
members[0].name = "is_system_exception";
members[0].type = orb.get_primitive_tc(org.omg.CORBA.TCKind.tk_boolean);
members[0].access = org.omg.CORBA.PRIVATE_MEMBER.value;
members[1] = new org.omg.CORBA.ValueMember();
members[1].name = "byte_order";
members[1].type = orb.get_primitive_tc(org.omg.CORBA.TCKind.tk_boolean);
members[1].access = org.omg.CORBA.PRIVATE_MEMBER.value;
members[2] = new org.omg.CORBA.ValueMember();
members[2].name = "marshaled_exception";
members[2].type = orb.create_sequence_tc(0, orb.get_primitive_tc(org.omg.CORBA.TCKind.tk_octet));
members[2].access = org.omg.CORBA.PRIVATE_MEMBER.value;
typeCode_ = orb.create_value_tc(id(), "ExceptionHolder", org.omg.CORBA.VM_NONE.value, null, members);
}
return typeCode_;
}
public static String
id()
{
return "IDL:omg.org/Messaging/ExceptionHolder:1.0";
}
public static _ExceptionHolder
read(org.omg.CORBA.portable.InputStream in)
{
if(!(in instanceof org.omg.CORBA_2_3.portable.InputStream))
throw new org.omg.CORBA.BAD_PARAM();
return (_ExceptionHolder)((org.omg.CORBA_2_3.portable.InputStream)in).read_value(id());
}
public static void
write(org.omg.CORBA.portable.OutputStream out, _ExceptionHolder val)
{
if(!(out instanceof org.omg.CORBA_2_3.portable.OutputStream))
throw new org.omg.CORBA.BAD_PARAM();
((org.omg.CORBA_2_3.portable.OutputStream)out).write_value(val, id());
}
}
| 4,944 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/Messaging/PolicyValueSeqHolder.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.Messaging;
//
// IDL:omg.org/Messaging/PolicyValueSeq:1.0
//
final public class PolicyValueSeqHolder implements org.omg.CORBA.portable.Streamable
{
public PolicyValue[] value;
public
PolicyValueSeqHolder()
{
}
public
PolicyValueSeqHolder(PolicyValue[] initial)
{
value = initial;
}
public void
_read(org.omg.CORBA.portable.InputStream in)
{
value = PolicyValueSeqHelper.read(in);
}
public void
_write(org.omg.CORBA.portable.OutputStream out)
{
PolicyValueSeqHelper.write(out, value);
}
public org.omg.CORBA.TypeCode
_type()
{
return PolicyValueSeqHelper.type();
}
}
| 4,945 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/Messaging/QueueOrderPolicyHolder.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.Messaging;
//
// IDL:omg.org/Messaging/QueueOrderPolicy:1.0
//
final public class QueueOrderPolicyHolder implements org.omg.CORBA.portable.Streamable
{
public QueueOrderPolicy value;
public
QueueOrderPolicyHolder()
{
}
public
QueueOrderPolicyHolder(QueueOrderPolicy initial)
{
value = initial;
}
public void
_read(org.omg.CORBA.portable.InputStream in)
{
value = QueueOrderPolicyHelper.read(in);
}
public void
_write(org.omg.CORBA.portable.OutputStream out)
{
QueueOrderPolicyHelper.write(out, value);
}
public org.omg.CORBA.TypeCode
_type()
{
return QueueOrderPolicyHelper.type();
}
}
| 4,946 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/Messaging/MAX_HOPS_POLICY_TYPE.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.Messaging;
//
// IDL:omg.org/Messaging/MAX_HOPS_POLICY_TYPE:1.0
//
/***/
public interface MAX_HOPS_POLICY_TYPE
{
int value = (int)(34L);
}
| 4,947 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/Messaging/ORDER_TEMPORAL.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.Messaging;
//
// IDL:omg.org/Messaging/ORDER_TEMPORAL:1.0
//
/***/
public interface ORDER_TEMPORAL
{
short value = (short)(2L);
}
| 4,948 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/Messaging/ROUTE_FORWARD.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.Messaging;
//
// IDL:omg.org/Messaging/ROUTE_FORWARD:1.0
//
/***/
public interface ROUTE_FORWARD
{
short value = (short)(1L);
}
| 4,949 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/Messaging/RelativeRequestTimeoutPolicy.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.Messaging;
//
// IDL:omg.org/Messaging/RelativeRequestTimeoutPolicy:1.0
//
/***/
public interface RelativeRequestTimeoutPolicy extends RelativeRequestTimeoutPolicyOperations,
org.omg.CORBA.Policy
{
}
| 4,950 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/Messaging/ReplyHandler.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.Messaging;
//
// IDL:omg.org/Messaging/ReplyHandler:1.0
//
/***/
public interface ReplyHandler extends ReplyHandlerOperations,
org.omg.CORBA.Object,
org.omg.CORBA.portable.IDLEntity
{
}
| 4,951 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/Messaging/ReplyHandlerOperations.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.Messaging;
//
// IDL:omg.org/Messaging/ReplyHandler:1.0
//
/***/
public interface ReplyHandlerOperations
{
}
| 4,952 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/Messaging/SyncScopePolicy.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.Messaging;
//
// IDL:omg.org/Messaging/SyncScopePolicy:1.0
//
/***/
public interface SyncScopePolicy extends SyncScopePolicyOperations,
org.omg.CORBA.Policy
{
}
| 4,953 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/Messaging/_ExceptionHolderHolder.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.Messaging;
//
// IDL:omg.org/Messaging/ExceptionHolder:1.0
//
final public class _ExceptionHolderHolder implements org.omg.CORBA.portable.Streamable
{
public _ExceptionHolder value;
public
_ExceptionHolderHolder()
{
}
public
_ExceptionHolderHolder(_ExceptionHolder initial)
{
value = initial;
}
public void
_read(org.omg.CORBA.portable.InputStream in)
{
value = _ExceptionHolderHelper.read(in);
}
public void
_write(org.omg.CORBA.portable.OutputStream out)
{
_ExceptionHolderHelper.write(out, value);
}
public org.omg.CORBA.TypeCode
_type()
{
return _ExceptionHolderHelper.type();
}
}
| 4,954 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/Messaging/ReplyPriorityPolicy.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.Messaging;
//
// IDL:omg.org/Messaging/ReplyPriorityPolicy:1.0
//
/***/
public interface ReplyPriorityPolicy extends ReplyPriorityPolicyOperations,
org.omg.CORBA.Policy
{
}
| 4,955 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/Messaging/QueueOrderPolicyHelper.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.Messaging;
//
// IDL:omg.org/Messaging/QueueOrderPolicy:1.0
//
final public class QueueOrderPolicyHelper
{
public static void
insert(org.omg.CORBA.Any any, QueueOrderPolicy val)
{
any.insert_Object(val, type());
}
public static QueueOrderPolicy
extract(org.omg.CORBA.Any any)
{
if(any.type().equivalent(type()))
return narrow(any.extract_Object());
throw new org.omg.CORBA.BAD_OPERATION();
}
private static org.omg.CORBA.TypeCode typeCode_;
public static org.omg.CORBA.TypeCode
type()
{
if(typeCode_ == null)
{
org.omg.CORBA.ORB orb = org.omg.CORBA.ORB.init();
typeCode_ = ((org.omg.CORBA_2_4.ORB)orb).create_local_interface_tc(id(), "QueueOrderPolicy");
}
return typeCode_;
}
public static String
id()
{
return "IDL:omg.org/Messaging/QueueOrderPolicy:1.0";
}
public static QueueOrderPolicy
read(org.omg.CORBA.portable.InputStream in)
{
throw new org.omg.CORBA.MARSHAL();
}
public static void
write(org.omg.CORBA.portable.OutputStream out, QueueOrderPolicy val)
{
throw new org.omg.CORBA.MARSHAL();
}
public static QueueOrderPolicy
narrow(org.omg.CORBA.Object val)
{
try
{
return (QueueOrderPolicy)val;
}
catch(ClassCastException ex)
{
}
throw new org.omg.CORBA.BAD_PARAM();
}
}
| 4,956 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/Messaging/PolicyValueSeqHelper.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.Messaging;
//
// IDL:omg.org/Messaging/PolicyValueSeq:1.0
//
final public class PolicyValueSeqHelper
{
public static void
insert(org.omg.CORBA.Any any, PolicyValue[] val)
{
org.omg.CORBA.portable.OutputStream out = any.create_output_stream();
write(out, val);
any.read_value(out.create_input_stream(), type());
}
public static PolicyValue[]
extract(org.omg.CORBA.Any any)
{
if(any.type().equivalent(type()))
return read(any.create_input_stream());
else
throw new org.omg.CORBA.BAD_OPERATION();
}
private static org.omg.CORBA.TypeCode typeCode_;
public static org.omg.CORBA.TypeCode
type()
{
if(typeCode_ == null)
{
org.omg.CORBA.ORB orb = org.omg.CORBA.ORB.init();
typeCode_ = orb.create_alias_tc(id(), "PolicyValueSeq", orb.create_sequence_tc(0, PolicyValueHelper.type()));
}
return typeCode_;
}
public static String
id()
{
return "IDL:omg.org/Messaging/PolicyValueSeq:1.0";
}
public static PolicyValue[]
read(org.omg.CORBA.portable.InputStream in)
{
PolicyValue[] _ob_v;
int len0 = in.read_ulong();
_ob_v = new PolicyValue[len0];
for(int i0 = 0; i0 < len0; i0++)
_ob_v[i0] = PolicyValueHelper.read(in);
return _ob_v;
}
public static void
write(org.omg.CORBA.portable.OutputStream out, PolicyValue[] val)
{
int len0 = val.length;
out.write_ulong(len0);
for(int i0 = 0; i0 < len0; i0++)
PolicyValueHelper.write(out, val[i0]);
}
}
| 4,957 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/Messaging/ReplyHandlerPOA.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.Messaging;
//
// IDL:omg.org/Messaging/ReplyHandler:1.0
//
public abstract class ReplyHandlerPOA
extends org.omg.PortableServer.Servant
implements org.omg.CORBA.portable.InvokeHandler,
ReplyHandlerOperations
{
static final String[] _ob_ids_ =
{
"IDL:omg.org/Messaging/ReplyHandler:1.0",
};
public ReplyHandler
_this()
{
return ReplyHandlerHelper.narrow(super._this_object());
}
public ReplyHandler
_this(org.omg.CORBA.ORB orb)
{
return ReplyHandlerHelper.narrow(super._this_object(orb));
}
public String[]
_all_interfaces(org.omg.PortableServer.POA poa, byte[] objectId)
{
return _ob_ids_;
}
public org.omg.CORBA.portable.OutputStream
_invoke(String opName,
org.omg.CORBA.portable.InputStream in,
org.omg.CORBA.portable.ResponseHandler handler)
{
throw new org.omg.CORBA.BAD_OPERATION();
}
}
| 4,958 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/Messaging/RELATIVE_RT_TIMEOUT_POLICY_TYPE.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.Messaging;
//
// IDL:omg.org/Messaging/RELATIVE_RT_TIMEOUT_POLICY_TYPE:1.0
//
/***/
public interface RELATIVE_RT_TIMEOUT_POLICY_TYPE
{
int value = (int)(32L);
}
| 4,959 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/Messaging/ReplyEndTimePolicyOperations.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.Messaging;
//
// IDL:omg.org/Messaging/ReplyEndTimePolicy:1.0
//
/***/
public interface ReplyEndTimePolicyOperations extends org.omg.CORBA.PolicyOperations
{
//
// IDL:omg.org/Messaging/ReplyEndTimePolicy/end_time:1.0
//
/***/
org.omg.TimeBase.UtcT
end_time();
}
| 4,960 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/Messaging/RelativeRoundtripTimeoutPolicyHelper.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.Messaging;
//
// IDL:omg.org/Messaging/RelativeRoundtripTimeoutPolicy:1.0
//
final public class RelativeRoundtripTimeoutPolicyHelper
{
public static void
insert(org.omg.CORBA.Any any, RelativeRoundtripTimeoutPolicy val)
{
any.insert_Object(val, type());
}
public static RelativeRoundtripTimeoutPolicy
extract(org.omg.CORBA.Any any)
{
if(any.type().equivalent(type()))
return narrow(any.extract_Object());
throw new org.omg.CORBA.BAD_OPERATION();
}
private static org.omg.CORBA.TypeCode typeCode_;
public static org.omg.CORBA.TypeCode
type()
{
if(typeCode_ == null)
{
org.omg.CORBA.ORB orb = org.omg.CORBA.ORB.init();
typeCode_ = ((org.omg.CORBA_2_4.ORB)orb).create_local_interface_tc(id(), "RelativeRoundtripTimeoutPolicy");
}
return typeCode_;
}
public static String
id()
{
return "IDL:omg.org/Messaging/RelativeRoundtripTimeoutPolicy:1.0";
}
public static RelativeRoundtripTimeoutPolicy
read(org.omg.CORBA.portable.InputStream in)
{
throw new org.omg.CORBA.MARSHAL();
}
public static void
write(org.omg.CORBA.portable.OutputStream out, RelativeRoundtripTimeoutPolicy val)
{
throw new org.omg.CORBA.MARSHAL();
}
public static RelativeRoundtripTimeoutPolicy
narrow(org.omg.CORBA.Object val)
{
try
{
return (RelativeRoundtripTimeoutPolicy)val;
}
catch(ClassCastException ex)
{
}
throw new org.omg.CORBA.BAD_PARAM();
}
}
| 4,961 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/Messaging/RelativeRequestTimeoutPolicyHelper.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.Messaging;
//
// IDL:omg.org/Messaging/RelativeRequestTimeoutPolicy:1.0
//
final public class RelativeRequestTimeoutPolicyHelper
{
public static void
insert(org.omg.CORBA.Any any, RelativeRequestTimeoutPolicy val)
{
any.insert_Object(val, type());
}
public static RelativeRequestTimeoutPolicy
extract(org.omg.CORBA.Any any)
{
if(any.type().equivalent(type()))
return narrow(any.extract_Object());
throw new org.omg.CORBA.BAD_OPERATION();
}
private static org.omg.CORBA.TypeCode typeCode_;
public static org.omg.CORBA.TypeCode
type()
{
if(typeCode_ == null)
{
org.omg.CORBA.ORB orb = org.omg.CORBA.ORB.init();
typeCode_ = ((org.omg.CORBA_2_4.ORB)orb).create_local_interface_tc(id(), "RelativeRequestTimeoutPolicy");
}
return typeCode_;
}
public static String
id()
{
return "IDL:omg.org/Messaging/RelativeRequestTimeoutPolicy:1.0";
}
public static RelativeRequestTimeoutPolicy
read(org.omg.CORBA.portable.InputStream in)
{
throw new org.omg.CORBA.MARSHAL();
}
public static void
write(org.omg.CORBA.portable.OutputStream out, RelativeRequestTimeoutPolicy val)
{
throw new org.omg.CORBA.MARSHAL();
}
public static RelativeRequestTimeoutPolicy
narrow(org.omg.CORBA.Object val)
{
try
{
return (RelativeRequestTimeoutPolicy)val;
}
catch(ClassCastException ex)
{
}
throw new org.omg.CORBA.BAD_PARAM();
}
}
| 4,962 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/Messaging/QueueOrderPolicyOperations.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.Messaging;
//
// IDL:omg.org/Messaging/QueueOrderPolicy:1.0
//
/***/
public interface QueueOrderPolicyOperations extends org.omg.CORBA.PolicyOperations
{
//
// IDL:omg.org/Messaging/QueueOrderPolicy/allowed_orders:1.0
//
/***/
short
allowed_orders();
}
| 4,963 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/Messaging/RequestStartTimePolicyOperations.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.Messaging;
//
// IDL:omg.org/Messaging/RequestStartTimePolicy:1.0
//
/***/
public interface RequestStartTimePolicyOperations extends org.omg.CORBA.PolicyOperations
{
//
// IDL:omg.org/Messaging/RequestStartTimePolicy/start_time:1.0
//
/***/
org.omg.TimeBase.UtcT
start_time();
}
| 4,964 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/Messaging/PriorityHelper.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.Messaging;
//
// IDL:omg.org/Messaging/Priority:1.0
//
final public class PriorityHelper
{
public static void
insert(org.omg.CORBA.Any any, short val)
{
org.omg.CORBA.portable.OutputStream out = any.create_output_stream();
write(out, val);
any.read_value(out.create_input_stream(), type());
}
public static short
extract(org.omg.CORBA.Any any)
{
if(any.type().equivalent(type()))
return read(any.create_input_stream());
else
throw new org.omg.CORBA.BAD_OPERATION();
}
private static org.omg.CORBA.TypeCode typeCode_;
public static org.omg.CORBA.TypeCode
type()
{
if(typeCode_ == null)
{
org.omg.CORBA.ORB orb = org.omg.CORBA.ORB.init();
typeCode_ = orb.create_alias_tc(id(), "Priority", orb.get_primitive_tc(org.omg.CORBA.TCKind.tk_short));
}
return typeCode_;
}
public static String
id()
{
return "IDL:omg.org/Messaging/Priority:1.0";
}
public static short
read(org.omg.CORBA.portable.InputStream in)
{
short _ob_v;
_ob_v = in.read_short();
return _ob_v;
}
public static void
write(org.omg.CORBA.portable.OutputStream out, short val)
{
out.write_short(val);
}
}
| 4,965 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/Messaging/RequestPriorityPolicyHolder.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.Messaging;
//
// IDL:omg.org/Messaging/RequestPriorityPolicy:1.0
//
final public class RequestPriorityPolicyHolder implements org.omg.CORBA.portable.Streamable
{
public RequestPriorityPolicy value;
public
RequestPriorityPolicyHolder()
{
}
public
RequestPriorityPolicyHolder(RequestPriorityPolicy initial)
{
value = initial;
}
public void
_read(org.omg.CORBA.portable.InputStream in)
{
value = RequestPriorityPolicyHelper.read(in);
}
public void
_write(org.omg.CORBA.portable.OutputStream out)
{
RequestPriorityPolicyHelper.write(out, value);
}
public org.omg.CORBA.TypeCode
_type()
{
return RequestPriorityPolicyHelper.type();
}
}
| 4,966 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/Messaging/RelativeRoundtripTimeoutPolicyOperations.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.Messaging;
//
// IDL:omg.org/Messaging/RelativeRoundtripTimeoutPolicy:1.0
//
/***/
public interface RelativeRoundtripTimeoutPolicyOperations extends org.omg.CORBA.PolicyOperations
{
//
// IDL:omg.org/Messaging/RelativeRoundtripTimeoutPolicy/relative_expiry:1.0
//
/***/
long
relative_expiry();
}
| 4,967 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/Messaging/ROUTING_POLICY_TYPE.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.Messaging;
//
// IDL:omg.org/Messaging/ROUTING_POLICY_TYPE:1.0
//
/***/
public interface ROUTING_POLICY_TYPE
{
int value = (int)(33L);
}
| 4,968 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/Messaging/RequestPriorityPolicyHelper.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.Messaging;
//
// IDL:omg.org/Messaging/RequestPriorityPolicy:1.0
//
final public class RequestPriorityPolicyHelper
{
public static void
insert(org.omg.CORBA.Any any, RequestPriorityPolicy val)
{
any.insert_Object(val, type());
}
public static RequestPriorityPolicy
extract(org.omg.CORBA.Any any)
{
if(any.type().equivalent(type()))
return narrow(any.extract_Object());
throw new org.omg.CORBA.BAD_OPERATION();
}
private static org.omg.CORBA.TypeCode typeCode_;
public static org.omg.CORBA.TypeCode
type()
{
if(typeCode_ == null)
{
org.omg.CORBA.ORB orb = org.omg.CORBA.ORB.init();
typeCode_ = ((org.omg.CORBA_2_4.ORB)orb).create_local_interface_tc(id(), "RequestPriorityPolicy");
}
return typeCode_;
}
public static String
id()
{
return "IDL:omg.org/Messaging/RequestPriorityPolicy:1.0";
}
public static RequestPriorityPolicy
read(org.omg.CORBA.portable.InputStream in)
{
throw new org.omg.CORBA.MARSHAL();
}
public static void
write(org.omg.CORBA.portable.OutputStream out, RequestPriorityPolicy val)
{
throw new org.omg.CORBA.MARSHAL();
}
public static RequestPriorityPolicy
narrow(org.omg.CORBA.Object val)
{
try
{
return (RequestPriorityPolicy)val;
}
catch(ClassCastException ex)
{
}
throw new org.omg.CORBA.BAD_PARAM();
}
}
| 4,969 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/Messaging/NO_REBIND.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.Messaging;
//
// IDL:omg.org/Messaging/NO_REBIND:1.0
//
/***/
public interface NO_REBIND
{
short value = (short)(1L);
}
| 4,970 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/Messaging/RoutingTypeRange.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.Messaging;
//
// IDL:omg.org/Messaging/RoutingTypeRange:1.0
//
/***/
final public class RoutingTypeRange implements org.omg.CORBA.portable.IDLEntity
{
private static final String _ob_id = "IDL:omg.org/Messaging/RoutingTypeRange:1.0";
public
RoutingTypeRange()
{
}
public
RoutingTypeRange(short min,
short max)
{
this.min = min;
this.max = max;
}
public short min;
public short max;
}
| 4,971 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/Messaging/REQUEST_START_TIME_POLICY_TYPE.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.Messaging;
//
// IDL:omg.org/Messaging/REQUEST_START_TIME_POLICY_TYPE:1.0
//
/***/
public interface REQUEST_START_TIME_POLICY_TYPE
{
int value = (int)(27L);
}
| 4,972 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/Messaging/RelativeRequestTimeoutPolicyHolder.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.Messaging;
//
// IDL:omg.org/Messaging/RelativeRequestTimeoutPolicy:1.0
//
final public class RelativeRequestTimeoutPolicyHolder implements org.omg.CORBA.portable.Streamable
{
public RelativeRequestTimeoutPolicy value;
public
RelativeRequestTimeoutPolicyHolder()
{
}
public
RelativeRequestTimeoutPolicyHolder(RelativeRequestTimeoutPolicy initial)
{
value = initial;
}
public void
_read(org.omg.CORBA.portable.InputStream in)
{
value = RelativeRequestTimeoutPolicyHelper.read(in);
}
public void
_write(org.omg.CORBA.portable.OutputStream out)
{
RelativeRequestTimeoutPolicyHelper.write(out, value);
}
public org.omg.CORBA.TypeCode
_type()
{
return RelativeRequestTimeoutPolicyHelper.type();
}
}
| 4,973 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/Messaging/RelativeRoundtripTimeoutPolicyHolder.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.Messaging;
//
// IDL:omg.org/Messaging/RelativeRoundtripTimeoutPolicy:1.0
//
final public class RelativeRoundtripTimeoutPolicyHolder implements org.omg.CORBA.portable.Streamable
{
public RelativeRoundtripTimeoutPolicy value;
public
RelativeRoundtripTimeoutPolicyHolder()
{
}
public
RelativeRoundtripTimeoutPolicyHolder(RelativeRoundtripTimeoutPolicy initial)
{
value = initial;
}
public void
_read(org.omg.CORBA.portable.InputStream in)
{
value = RelativeRoundtripTimeoutPolicyHelper.read(in);
}
public void
_write(org.omg.CORBA.portable.OutputStream out)
{
RelativeRoundtripTimeoutPolicyHelper.write(out, value);
}
public org.omg.CORBA.TypeCode
_type()
{
return RelativeRoundtripTimeoutPolicyHelper.type();
}
}
| 4,974 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/Messaging/ReplyHandlerHolder.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.Messaging;
//
// IDL:omg.org/Messaging/ReplyHandler:1.0
//
final public class ReplyHandlerHolder implements org.omg.CORBA.portable.Streamable
{
public ReplyHandler value;
public
ReplyHandlerHolder()
{
}
public
ReplyHandlerHolder(ReplyHandler initial)
{
value = initial;
}
public void
_read(org.omg.CORBA.portable.InputStream in)
{
value = ReplyHandlerHelper.read(in);
}
public void
_write(org.omg.CORBA.portable.OutputStream out)
{
ReplyHandlerHelper.write(out, value);
}
public org.omg.CORBA.TypeCode
_type()
{
return ReplyHandlerHelper.type();
}
}
| 4,975 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/Messaging/PolicyValueHolder.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.Messaging;
//
// IDL:omg.org/Messaging/PolicyValue:1.0
//
final public class PolicyValueHolder implements org.omg.CORBA.portable.Streamable
{
public PolicyValue value;
public
PolicyValueHolder()
{
}
public
PolicyValueHolder(PolicyValue initial)
{
value = initial;
}
public void
_read(org.omg.CORBA.portable.InputStream in)
{
value = PolicyValueHelper.read(in);
}
public void
_write(org.omg.CORBA.portable.OutputStream out)
{
PolicyValueHelper.write(out, value);
}
public org.omg.CORBA.TypeCode
_type()
{
return PolicyValueHelper.type();
}
}
| 4,976 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/Messaging/SYNC_SCOPE_POLICY_TYPE.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.Messaging;
//
// IDL:omg.org/Messaging/SYNC_SCOPE_POLICY_TYPE:1.0
//
/***/
public interface SYNC_SCOPE_POLICY_TYPE
{
int value = (int)(24L);
}
| 4,977 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/Messaging/RequestPriorityPolicyOperations.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.Messaging;
//
// IDL:omg.org/Messaging/RequestPriorityPolicy:1.0
//
/***/
public interface RequestPriorityPolicyOperations extends org.omg.CORBA.PolicyOperations
{
//
// IDL:omg.org/Messaging/RequestPriorityPolicy/priority_range:1.0
//
/***/
PriorityRange
priority_range();
}
| 4,978 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/Messaging/RequestStartTimePolicyHolder.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.Messaging;
//
// IDL:omg.org/Messaging/RequestStartTimePolicy:1.0
//
final public class RequestStartTimePolicyHolder implements org.omg.CORBA.portable.Streamable
{
public RequestStartTimePolicy value;
public
RequestStartTimePolicyHolder()
{
}
public
RequestStartTimePolicyHolder(RequestStartTimePolicy initial)
{
value = initial;
}
public void
_read(org.omg.CORBA.portable.InputStream in)
{
value = RequestStartTimePolicyHelper.read(in);
}
public void
_write(org.omg.CORBA.portable.OutputStream out)
{
RequestStartTimePolicyHelper.write(out, value);
}
public org.omg.CORBA.TypeCode
_type()
{
return RequestStartTimePolicyHelper.type();
}
}
| 4,979 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/Messaging/MaxHopsPolicy.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.Messaging;
//
// IDL:omg.org/Messaging/MaxHopsPolicy:1.0
//
/***/
public interface MaxHopsPolicy extends MaxHopsPolicyOperations,
org.omg.CORBA.Policy
{
}
| 4,980 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/Messaging/ReplyStartTimePolicyHelper.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.Messaging;
//
// IDL:omg.org/Messaging/ReplyStartTimePolicy:1.0
//
final public class ReplyStartTimePolicyHelper
{
public static void
insert(org.omg.CORBA.Any any, ReplyStartTimePolicy val)
{
any.insert_Object(val, type());
}
public static ReplyStartTimePolicy
extract(org.omg.CORBA.Any any)
{
if(any.type().equivalent(type()))
return narrow(any.extract_Object());
throw new org.omg.CORBA.BAD_OPERATION();
}
private static org.omg.CORBA.TypeCode typeCode_;
public static org.omg.CORBA.TypeCode
type()
{
if(typeCode_ == null)
{
org.omg.CORBA.ORB orb = org.omg.CORBA.ORB.init();
typeCode_ = ((org.omg.CORBA_2_4.ORB)orb).create_local_interface_tc(id(), "ReplyStartTimePolicy");
}
return typeCode_;
}
public static String
id()
{
return "IDL:omg.org/Messaging/ReplyStartTimePolicy:1.0";
}
public static ReplyStartTimePolicy
read(org.omg.CORBA.portable.InputStream in)
{
throw new org.omg.CORBA.MARSHAL();
}
public static void
write(org.omg.CORBA.portable.OutputStream out, ReplyStartTimePolicy val)
{
throw new org.omg.CORBA.MARSHAL();
}
public static ReplyStartTimePolicy
narrow(org.omg.CORBA.Object val)
{
try
{
return (ReplyStartTimePolicy)val;
}
catch(ClassCastException ex)
{
}
throw new org.omg.CORBA.BAD_PARAM();
}
}
| 4,981 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/Messaging/ReplyStartTimePolicyHolder.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.Messaging;
//
// IDL:omg.org/Messaging/ReplyStartTimePolicy:1.0
//
final public class ReplyStartTimePolicyHolder implements org.omg.CORBA.portable.Streamable
{
public ReplyStartTimePolicy value;
public
ReplyStartTimePolicyHolder()
{
}
public
ReplyStartTimePolicyHolder(ReplyStartTimePolicy initial)
{
value = initial;
}
public void
_read(org.omg.CORBA.portable.InputStream in)
{
value = ReplyStartTimePolicyHelper.read(in);
}
public void
_write(org.omg.CORBA.portable.OutputStream out)
{
ReplyStartTimePolicyHelper.write(out, value);
}
public org.omg.CORBA.TypeCode
_type()
{
return ReplyStartTimePolicyHelper.type();
}
}
| 4,982 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/Messaging/PriorityRange.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.Messaging;
//
// IDL:omg.org/Messaging/PriorityRange:1.0
//
/***/
final public class PriorityRange implements org.omg.CORBA.portable.IDLEntity
{
private static final String _ob_id = "IDL:omg.org/Messaging/PriorityRange:1.0";
public
PriorityRange()
{
}
public
PriorityRange(short min,
short max)
{
this.min = min;
this.max = max;
}
public short min;
public short max;
}
| 4,983 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/Messaging/RequestStartTimePolicyHelper.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.Messaging;
//
// IDL:omg.org/Messaging/RequestStartTimePolicy:1.0
//
final public class RequestStartTimePolicyHelper
{
public static void
insert(org.omg.CORBA.Any any, RequestStartTimePolicy val)
{
any.insert_Object(val, type());
}
public static RequestStartTimePolicy
extract(org.omg.CORBA.Any any)
{
if(any.type().equivalent(type()))
return narrow(any.extract_Object());
throw new org.omg.CORBA.BAD_OPERATION();
}
private static org.omg.CORBA.TypeCode typeCode_;
public static org.omg.CORBA.TypeCode
type()
{
if(typeCode_ == null)
{
org.omg.CORBA.ORB orb = org.omg.CORBA.ORB.init();
typeCode_ = ((org.omg.CORBA_2_4.ORB)orb).create_local_interface_tc(id(), "RequestStartTimePolicy");
}
return typeCode_;
}
public static String
id()
{
return "IDL:omg.org/Messaging/RequestStartTimePolicy:1.0";
}
public static RequestStartTimePolicy
read(org.omg.CORBA.portable.InputStream in)
{
throw new org.omg.CORBA.MARSHAL();
}
public static void
write(org.omg.CORBA.portable.OutputStream out, RequestStartTimePolicy val)
{
throw new org.omg.CORBA.MARSHAL();
}
public static RequestStartTimePolicy
narrow(org.omg.CORBA.Object val)
{
try
{
return (RequestStartTimePolicy)val;
}
catch(ClassCastException ex)
{
}
throw new org.omg.CORBA.BAD_PARAM();
}
}
| 4,984 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/Messaging/SYNC_NONE.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.Messaging;
//
// IDL:omg.org/Messaging/SYNC_NONE:1.0
//
/***/
public interface SYNC_NONE
{
short value = (short)(0L);
}
| 4,985 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/Messaging/PolicyValueHelper.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.Messaging;
//
// IDL:omg.org/Messaging/PolicyValue:1.0
//
final public class PolicyValueHelper
{
public static void
insert(org.omg.CORBA.Any any, PolicyValue val)
{
org.omg.CORBA.portable.OutputStream out = any.create_output_stream();
write(out, val);
any.read_value(out.create_input_stream(), type());
}
public static PolicyValue
extract(org.omg.CORBA.Any any)
{
if(any.type().equivalent(type()))
return read(any.create_input_stream());
else
throw new org.omg.CORBA.BAD_OPERATION();
}
private static org.omg.CORBA.TypeCode typeCode_;
public static org.omg.CORBA.TypeCode
type()
{
if(typeCode_ == null)
{
org.omg.CORBA.ORB orb = org.omg.CORBA.ORB.init();
org.omg.CORBA.StructMember[] members = new org.omg.CORBA.StructMember[2];
members[0] = new org.omg.CORBA.StructMember();
members[0].name = "ptype";
members[0].type = org.omg.CORBA.PolicyTypeHelper.type();
members[1] = new org.omg.CORBA.StructMember();
members[1].name = "pvalue";
members[1].type = orb.create_sequence_tc(0, orb.get_primitive_tc(org.omg.CORBA.TCKind.tk_octet));
typeCode_ = orb.create_struct_tc(id(), "PolicyValue", members);
}
return typeCode_;
}
public static String
id()
{
return "IDL:omg.org/Messaging/PolicyValue:1.0";
}
public static PolicyValue
read(org.omg.CORBA.portable.InputStream in)
{
PolicyValue _ob_v = new PolicyValue();
_ob_v.ptype = org.omg.CORBA.PolicyTypeHelper.read(in);
int len0 = in.read_ulong();
_ob_v.pvalue = new byte[len0];
in.read_octet_array(_ob_v.pvalue, 0, len0);
return _ob_v;
}
public static void
write(org.omg.CORBA.portable.OutputStream out, PolicyValue val)
{
org.omg.CORBA.PolicyTypeHelper.write(out, val.ptype);
int len0 = val.pvalue.length;
out.write_ulong(len0);
out.write_octet_array(val.pvalue, 0, len0);
}
}
| 4,986 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/Messaging/ReplyHandlerHelper.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.Messaging;
//
// IDL:omg.org/Messaging/ReplyHandler:1.0
//
final public class ReplyHandlerHelper
{
public static void
insert(org.omg.CORBA.Any any, ReplyHandler val)
{
any.insert_Object(val, type());
}
public static ReplyHandler
extract(org.omg.CORBA.Any any)
{
if(any.type().equivalent(type()))
return narrow(any.extract_Object());
throw new org.omg.CORBA.BAD_OPERATION();
}
private static org.omg.CORBA.TypeCode typeCode_;
public static org.omg.CORBA.TypeCode
type()
{
if(typeCode_ == null)
{
org.omg.CORBA.ORB orb = org.omg.CORBA.ORB.init();
typeCode_ = orb.create_interface_tc(id(), "ReplyHandler");
}
return typeCode_;
}
public static String
id()
{
return "IDL:omg.org/Messaging/ReplyHandler:1.0";
}
public static ReplyHandler
read(org.omg.CORBA.portable.InputStream in)
{
org.omg.CORBA.Object _ob_v = in.read_Object();
try
{
return (ReplyHandler)_ob_v;
}
catch(ClassCastException ex)
{
}
org.omg.CORBA.portable.ObjectImpl _ob_impl;
_ob_impl = (org.omg.CORBA.portable.ObjectImpl)_ob_v;
_ReplyHandlerStub _ob_stub = new _ReplyHandlerStub();
_ob_stub._set_delegate(_ob_impl._get_delegate());
return _ob_stub;
}
public static void
write(org.omg.CORBA.portable.OutputStream out, ReplyHandler val)
{
out.write_Object(val);
}
public static ReplyHandler
narrow(org.omg.CORBA.Object val)
{
if(val != null)
{
try
{
return (ReplyHandler)val;
}
catch(ClassCastException ex)
{
}
if(val._is_a(id()))
{
org.omg.CORBA.portable.ObjectImpl _ob_impl;
_ReplyHandlerStub _ob_stub = new _ReplyHandlerStub();
_ob_impl = (org.omg.CORBA.portable.ObjectImpl)val;
_ob_stub._set_delegate(_ob_impl._get_delegate());
return _ob_stub;
}
throw new org.omg.CORBA.BAD_PARAM();
}
return null;
}
public static ReplyHandler
unchecked_narrow(org.omg.CORBA.Object val)
{
if(val != null)
{
try
{
return (ReplyHandler)val;
}
catch(ClassCastException ex)
{
}
org.omg.CORBA.portable.ObjectImpl _ob_impl;
_ReplyHandlerStub _ob_stub = new _ReplyHandlerStub();
_ob_impl = (org.omg.CORBA.portable.ObjectImpl)val;
_ob_stub._set_delegate(_ob_impl._get_delegate());
return _ob_stub;
}
return null;
}
}
| 4,987 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/Messaging/Poller.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.Messaging;
//
// IDL:omg.org/Messaging/Poller:1.0
//
/***/
public interface Poller extends org.omg.CORBA.portable.ValueBase,
org.omg.CORBA.Pollable
{
//
// IDL:omg.org/Messaging/Poller/operation_target:1.0
//
/***/
org.omg.CORBA.Object
operation_target();
//
// IDL:omg.org/Messaging/Poller/operation_name:1.0
//
/***/
String
operation_name();
//
// IDL:omg.org/Messaging/Poller/associated_handler:1.0
//
/***/
ReplyHandler
associated_handler();
void
associated_handler(ReplyHandler val);
//
// IDL:omg.org/Messaging/Poller/is_from_poller:1.0
//
/***/
boolean
is_from_poller();
}
| 4,988 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/Messaging/RequestEndTimePolicy.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// **********************************************************************
// Version: 4.3.1
package org.omg.Messaging;
//
// IDL:omg.org/Messaging/RequestEndTimePolicy:1.0
//
/***/
public interface RequestEndTimePolicy extends RequestEndTimePolicyOperations,
org.omg.CORBA.Policy
{
}
| 4,989 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/Messaging/ReplyStartTimePolicyOperations.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.Messaging;
//
// IDL:omg.org/Messaging/ReplyStartTimePolicy:1.0
//
/***/
public interface ReplyStartTimePolicyOperations extends org.omg.CORBA.PolicyOperations
{
//
// IDL:omg.org/Messaging/ReplyStartTimePolicy/start_time:1.0
//
/***/
org.omg.TimeBase.UtcT
start_time();
}
| 4,990 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/Messaging/RebindPolicyHelper.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.Messaging;
//
// IDL:omg.org/Messaging/RebindPolicy:1.0
//
final public class RebindPolicyHelper
{
public static void
insert(org.omg.CORBA.Any any, RebindPolicy val)
{
any.insert_Object(val, type());
}
public static RebindPolicy
extract(org.omg.CORBA.Any any)
{
if(any.type().equivalent(type()))
return narrow(any.extract_Object());
throw new org.omg.CORBA.BAD_OPERATION();
}
private static org.omg.CORBA.TypeCode typeCode_;
public static org.omg.CORBA.TypeCode
type()
{
if(typeCode_ == null)
{
org.omg.CORBA.ORB orb = org.omg.CORBA.ORB.init();
typeCode_ = ((org.omg.CORBA_2_4.ORB)orb).create_local_interface_tc(id(), "RebindPolicy");
}
return typeCode_;
}
public static String
id()
{
return "IDL:omg.org/Messaging/RebindPolicy:1.0";
}
public static RebindPolicy
read(org.omg.CORBA.portable.InputStream in)
{
throw new org.omg.CORBA.MARSHAL();
}
public static void
write(org.omg.CORBA.portable.OutputStream out, RebindPolicy val)
{
throw new org.omg.CORBA.MARSHAL();
}
public static RebindPolicy
narrow(org.omg.CORBA.Object val)
{
try
{
return (RebindPolicy)val;
}
catch(ClassCastException ex)
{
}
throw new org.omg.CORBA.BAD_PARAM();
}
}
| 4,991 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/Messaging/INVOCATION_POLICIES.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.Messaging;
//
// IDL:omg.org/Messaging/INVOCATION_POLICIES:1.0
//
/***/
public interface INVOCATION_POLICIES
{
int value = (int)(7L);
}
| 4,992 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/Messaging/QUEUE_ORDER_POLICY_TYPE.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.Messaging;
//
// IDL:omg.org/Messaging/QUEUE_ORDER_POLICY_TYPE:1.0
//
/***/
public interface QUEUE_ORDER_POLICY_TYPE
{
int value = (int)(35L);
}
| 4,993 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/Messaging/RequestEndTimePolicyHelper.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.Messaging;
//
// IDL:omg.org/Messaging/RequestEndTimePolicy:1.0
//
final public class RequestEndTimePolicyHelper
{
public static void
insert(org.omg.CORBA.Any any, RequestEndTimePolicy val)
{
any.insert_Object(val, type());
}
public static RequestEndTimePolicy
extract(org.omg.CORBA.Any any)
{
if(any.type().equivalent(type()))
return narrow(any.extract_Object());
throw new org.omg.CORBA.BAD_OPERATION();
}
private static org.omg.CORBA.TypeCode typeCode_;
public static org.omg.CORBA.TypeCode
type()
{
if(typeCode_ == null)
{
org.omg.CORBA.ORB orb = org.omg.CORBA.ORB.init();
typeCode_ = ((org.omg.CORBA_2_4.ORB)orb).create_local_interface_tc(id(), "RequestEndTimePolicy");
}
return typeCode_;
}
public static String
id()
{
return "IDL:omg.org/Messaging/RequestEndTimePolicy:1.0";
}
public static RequestEndTimePolicy
read(org.omg.CORBA.portable.InputStream in)
{
throw new org.omg.CORBA.MARSHAL();
}
public static void
write(org.omg.CORBA.portable.OutputStream out, RequestEndTimePolicy val)
{
throw new org.omg.CORBA.MARSHAL();
}
public static RequestEndTimePolicy
narrow(org.omg.CORBA.Object val)
{
try
{
return (RequestEndTimePolicy)val;
}
catch(ClassCastException ex)
{
}
throw new org.omg.CORBA.BAD_PARAM();
}
}
| 4,994 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/Messaging/PriorityRangeHolder.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.Messaging;
//
// IDL:omg.org/Messaging/PriorityRange:1.0
//
final public class PriorityRangeHolder implements org.omg.CORBA.portable.Streamable
{
public PriorityRange value;
public
PriorityRangeHolder()
{
}
public
PriorityRangeHolder(PriorityRange initial)
{
value = initial;
}
public void
_read(org.omg.CORBA.portable.InputStream in)
{
value = PriorityRangeHelper.read(in);
}
public void
_write(org.omg.CORBA.portable.OutputStream out)
{
PriorityRangeHelper.write(out, value);
}
public org.omg.CORBA.TypeCode
_type()
{
return PriorityRangeHelper.type();
}
}
| 4,995 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/Messaging/PriorityRangeHelper.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.Messaging;
//
// IDL:omg.org/Messaging/PriorityRange:1.0
//
final public class PriorityRangeHelper
{
public static void
insert(org.omg.CORBA.Any any, PriorityRange val)
{
org.omg.CORBA.portable.OutputStream out = any.create_output_stream();
write(out, val);
any.read_value(out.create_input_stream(), type());
}
public static PriorityRange
extract(org.omg.CORBA.Any any)
{
if(any.type().equivalent(type()))
return read(any.create_input_stream());
else
throw new org.omg.CORBA.BAD_OPERATION();
}
private static org.omg.CORBA.TypeCode typeCode_;
public static org.omg.CORBA.TypeCode
type()
{
if(typeCode_ == null)
{
org.omg.CORBA.ORB orb = org.omg.CORBA.ORB.init();
org.omg.CORBA.StructMember[] members = new org.omg.CORBA.StructMember[2];
members[0] = new org.omg.CORBA.StructMember();
members[0].name = "min";
members[0].type = PriorityHelper.type();
members[1] = new org.omg.CORBA.StructMember();
members[1].name = "max";
members[1].type = PriorityHelper.type();
typeCode_ = orb.create_struct_tc(id(), "PriorityRange", members);
}
return typeCode_;
}
public static String
id()
{
return "IDL:omg.org/Messaging/PriorityRange:1.0";
}
public static PriorityRange
read(org.omg.CORBA.portable.InputStream in)
{
PriorityRange _ob_v = new PriorityRange();
_ob_v.min = PriorityHelper.read(in);
_ob_v.max = PriorityHelper.read(in);
return _ob_v;
}
public static void
write(org.omg.CORBA.portable.OutputStream out, PriorityRange val)
{
PriorityHelper.write(out, val.min);
PriorityHelper.write(out, val.max);
}
}
| 4,996 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/Messaging/ReplyEndTimePolicy.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.Messaging;
//
// IDL:omg.org/Messaging/ReplyEndTimePolicy:1.0
//
/***/
public interface ReplyEndTimePolicy extends ReplyEndTimePolicyOperations,
org.omg.CORBA.Policy
{
}
| 4,997 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/Messaging/RequestEndTimePolicyHolder.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.Messaging;
//
// IDL:omg.org/Messaging/RequestEndTimePolicy:1.0
//
final public class RequestEndTimePolicyHolder implements org.omg.CORBA.portable.Streamable
{
public RequestEndTimePolicy value;
public
RequestEndTimePolicyHolder()
{
}
public
RequestEndTimePolicyHolder(RequestEndTimePolicy initial)
{
value = initial;
}
public void
_read(org.omg.CORBA.portable.InputStream in)
{
value = RequestEndTimePolicyHelper.read(in);
}
public void
_write(org.omg.CORBA.portable.OutputStream out)
{
RequestEndTimePolicyHelper.write(out, value);
}
public org.omg.CORBA.TypeCode
_type()
{
return RequestEndTimePolicyHelper.type();
}
}
| 4,998 |
0 | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg | Create_ds/geronimo-yoko/yoko-spec-corba/src/main/java/org/omg/Messaging/TAG_POLICIES.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.Messaging;
//
// IDL:omg.org/Messaging/TAG_POLICIES:1.0
//
/***/
public interface TAG_POLICIES
{
int value = (int)(2L);
}
| 4,999 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.