001 /** 002 * Licensed to the Apache Software Foundation (ASF) under one or more 003 * contributor license agreements. See the NOTICE file distributed with 004 * this work for additional information regarding copyright ownership. 005 * The ASF licenses this file to You under the Apache License, Version 2.0 006 * (the "License"); you may not use this file except in compliance with 007 * the License. You may obtain a copy of the License at 008 * 009 * http://www.apache.org/licenses/LICENSE-2.0 010 * 011 * Unless required by applicable law or agreed to in writing, software 012 * distributed under the License is distributed on an "AS IS" BASIS, 013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 014 * See the License for the specific language governing permissions and 015 * limitations under the License. 016 */ 017 package org.apache.geronimo.connector.deployment.jsr88; 018 019 import org.apache.geronimo.xbeans.geronimo.GerPartitionedpoolType; 020 import org.apache.geronimo.xbeans.geronimo.GerSinglepoolType; 021 022 /** 023 * Settings for connectionmanager/partitioned-pool 024 * 025 * @version $Rev: 476049 $ $Date: 2006-11-16 23:35:17 -0500 (Thu, 16 Nov 2006) $ 026 */ 027 public class PartitionedPool extends SinglePool { 028 public PartitionedPool() { 029 } 030 031 public PartitionedPool(GerPartitionedpoolType pool) { 032 super(pool); 033 } 034 035 protected GerPartitionedpoolType getPool() { 036 return (GerPartitionedpoolType) getXmlObject(); 037 } 038 039 protected void configure(GerSinglepoolType pool) { 040 super.configure(pool); 041 if(!isPartitionBySubject() && !isPartitionByRequest()) { 042 setPartitionBySubject(true); 043 } 044 } 045 046 public boolean isPartitionBySubject() { 047 return getPool().isSetPartitionBySubject(); 048 } 049 050 public void setPartitionBySubject(boolean set) { 051 if(set) { 052 if(!isPartitionBySubject()) { 053 getPool().addNewPartitionBySubject(); 054 pcs.firePropertyChange("partitionBySubject", !set, set); 055 } 056 } else { 057 if(isPartitionBySubject()) { 058 getPool().unsetPartitionBySubject(); 059 pcs.firePropertyChange("partitionBySubject", !set, set); 060 } 061 } 062 } 063 064 public boolean isPartitionByRequest() { 065 return getPool().isSetPartitionByConnectionrequestinfo(); 066 } 067 068 public void setPartitionByRequest(boolean set) { 069 if(set) { 070 if(!isPartitionBySubject()) { 071 getPool().addNewPartitionByConnectionrequestinfo(); 072 pcs.firePropertyChange("partitionByRequest", !set, set); 073 } 074 } else { 075 if(isPartitionBySubject()) { 076 getPool().unsetPartitionByConnectionrequestinfo(); 077 pcs.firePropertyChange("partitionByRequest", !set, set); 078 } 079 } 080 } 081 }