parent
f85d48dd31
commit
be0b71ce31
|
@ -148,7 +148,7 @@ public abstract class AbstractPropertyAccessor extends TypeConverterSupport impl
|
||||||
* @throws InvalidPropertyException if there is no such property or
|
* @throws InvalidPropertyException if there is no such property or
|
||||||
* if the property isn't writable
|
* if the property isn't writable
|
||||||
* @throws PropertyAccessException if the property was valid but the
|
* @throws PropertyAccessException if the property was valid but the
|
||||||
* accessor method failed or a type mismatch occured
|
* accessor method failed or a type mismatch occurred
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public abstract void setPropertyValue(String propertyName, Object value) throws BeansException;
|
public abstract void setPropertyValue(String propertyName, Object value) throws BeansException;
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2002-2012 the original author or authors.
|
* Copyright 2002-2016 the original author or authors.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
@ -120,7 +120,7 @@ public interface PropertyAccessor {
|
||||||
* @throws InvalidPropertyException if there is no such property or
|
* @throws InvalidPropertyException if there is no such property or
|
||||||
* if the property isn't writable
|
* if the property isn't writable
|
||||||
* @throws PropertyAccessException if the property was valid but the
|
* @throws PropertyAccessException if the property was valid but the
|
||||||
* accessor method failed or a type mismatch occured
|
* accessor method failed or a type mismatch occurred
|
||||||
*/
|
*/
|
||||||
void setPropertyValue(String propertyName, Object value) throws BeansException;
|
void setPropertyValue(String propertyName, Object value) throws BeansException;
|
||||||
|
|
||||||
|
@ -130,7 +130,7 @@ public interface PropertyAccessor {
|
||||||
* @throws InvalidPropertyException if there is no such property or
|
* @throws InvalidPropertyException if there is no such property or
|
||||||
* if the property isn't writable
|
* if the property isn't writable
|
||||||
* @throws PropertyAccessException if the property was valid but the
|
* @throws PropertyAccessException if the property was valid but the
|
||||||
* accessor method failed or a type mismatch occured
|
* accessor method failed or a type mismatch occurred
|
||||||
*/
|
*/
|
||||||
void setPropertyValue(PropertyValue pv) throws BeansException;
|
void setPropertyValue(PropertyValue pv) throws BeansException;
|
||||||
|
|
||||||
|
@ -144,7 +144,7 @@ public interface PropertyAccessor {
|
||||||
* @throws InvalidPropertyException if there is no such property or
|
* @throws InvalidPropertyException if there is no such property or
|
||||||
* if the property isn't writable
|
* if the property isn't writable
|
||||||
* @throws PropertyBatchUpdateException if one or more PropertyAccessExceptions
|
* @throws PropertyBatchUpdateException if one or more PropertyAccessExceptions
|
||||||
* occured for specific properties during the batch update. This exception bundles
|
* occurred for specific properties during the batch update. This exception bundles
|
||||||
* all individual PropertyAccessExceptions. All other properties will have been
|
* all individual PropertyAccessExceptions. All other properties will have been
|
||||||
* successfully updated.
|
* successfully updated.
|
||||||
*/
|
*/
|
||||||
|
@ -164,7 +164,7 @@ public interface PropertyAccessor {
|
||||||
* @throws InvalidPropertyException if there is no such property or
|
* @throws InvalidPropertyException if there is no such property or
|
||||||
* if the property isn't writable
|
* if the property isn't writable
|
||||||
* @throws PropertyBatchUpdateException if one or more PropertyAccessExceptions
|
* @throws PropertyBatchUpdateException if one or more PropertyAccessExceptions
|
||||||
* occured for specific properties during the batch update. This exception bundles
|
* occurred for specific properties during the batch update. This exception bundles
|
||||||
* all individual PropertyAccessExceptions. All other properties will have been
|
* all individual PropertyAccessExceptions. All other properties will have been
|
||||||
* successfully updated.
|
* successfully updated.
|
||||||
* @see #setPropertyValues(PropertyValues, boolean, boolean)
|
* @see #setPropertyValues(PropertyValues, boolean, boolean)
|
||||||
|
@ -185,7 +185,7 @@ public interface PropertyAccessor {
|
||||||
* @throws InvalidPropertyException if there is no such property or
|
* @throws InvalidPropertyException if there is no such property or
|
||||||
* if the property isn't writable
|
* if the property isn't writable
|
||||||
* @throws PropertyBatchUpdateException if one or more PropertyAccessExceptions
|
* @throws PropertyBatchUpdateException if one or more PropertyAccessExceptions
|
||||||
* occured for specific properties during the batch update. This exception bundles
|
* occurred for specific properties during the batch update. This exception bundles
|
||||||
* all individual PropertyAccessExceptions. All other properties will have been
|
* all individual PropertyAccessExceptions. All other properties will have been
|
||||||
* successfully updated.
|
* successfully updated.
|
||||||
* @see #setPropertyValues(PropertyValues, boolean, boolean)
|
* @see #setPropertyValues(PropertyValues, boolean, boolean)
|
||||||
|
@ -208,7 +208,7 @@ public interface PropertyAccessor {
|
||||||
* @throws InvalidPropertyException if there is no such property or
|
* @throws InvalidPropertyException if there is no such property or
|
||||||
* if the property isn't writable
|
* if the property isn't writable
|
||||||
* @throws PropertyBatchUpdateException if one or more PropertyAccessExceptions
|
* @throws PropertyBatchUpdateException if one or more PropertyAccessExceptions
|
||||||
* occured for specific properties during the batch update. This exception bundles
|
* occurred for specific properties during the batch update. This exception bundles
|
||||||
* all individual PropertyAccessExceptions. All other properties will have been
|
* all individual PropertyAccessExceptions. All other properties will have been
|
||||||
* successfully updated.
|
* successfully updated.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -123,7 +123,7 @@ public class BeanCreationException extends FatalBeanException {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a related cause to this bean creation exception,
|
* Add a related cause to this bean creation exception,
|
||||||
* not being a direct cause of the failure but having occured
|
* not being a direct cause of the failure but having occurred
|
||||||
* earlier in the creation of the same bean instance.
|
* earlier in the creation of the same bean instance.
|
||||||
* @param ex the related cause to add
|
* @param ex the related cause to add
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2002-2012 the original author or authors.
|
* Copyright 2002-2016 the original author or authors.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
@ -208,7 +208,7 @@ public abstract class AbstractFactoryBean<T>
|
||||||
* <p>Invoked on initialization of this FactoryBean in case of
|
* <p>Invoked on initialization of this FactoryBean in case of
|
||||||
* a singleton; else, on each {@link #getObject()} call.
|
* a singleton; else, on each {@link #getObject()} call.
|
||||||
* @return the object returned by this factory
|
* @return the object returned by this factory
|
||||||
* @throws Exception if an exception occured during object creation
|
* @throws Exception if an exception occurred during object creation
|
||||||
* @see #getObject()
|
* @see #getObject()
|
||||||
*/
|
*/
|
||||||
protected abstract T createInstance() throws Exception;
|
protected abstract T createInstance() throws Exception;
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2002-2013 the original author or authors.
|
* Copyright 2002-2016 the original author or authors.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
@ -95,7 +95,7 @@ public class PropertiesFactoryBean extends PropertiesLoaderSupport
|
||||||
* <p>Invoked on initialization of this FactoryBean in case of a
|
* <p>Invoked on initialization of this FactoryBean in case of a
|
||||||
* shared singleton; else, on each {@link #getObject()} call.
|
* shared singleton; else, on each {@link #getObject()} call.
|
||||||
* @return the object returned by this factory
|
* @return the object returned by this factory
|
||||||
* @throws IOException if an exception occured during properties loading
|
* @throws IOException if an exception occurred during properties loading
|
||||||
* @see #mergeProperties()
|
* @see #mergeProperties()
|
||||||
*/
|
*/
|
||||||
protected Properties createProperties() throws IOException {
|
protected Properties createProperties() throws IOException {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2002-2015 the original author or authors.
|
* Copyright 2002-2016 the original author or authors.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
@ -79,7 +79,7 @@ public class AutoProxyRegistrar implements ImportBeanDefinitionRegistrar {
|
||||||
logger.warn(String.format("%s was imported but no annotations were found " +
|
logger.warn(String.format("%s was imported but no annotations were found " +
|
||||||
"having both 'mode' and 'proxyTargetClass' attributes of type " +
|
"having both 'mode' and 'proxyTargetClass' attributes of type " +
|
||||||
"AdviceMode and boolean respectively. This means that auto proxy " +
|
"AdviceMode and boolean respectively. This means that auto proxy " +
|
||||||
"creator registration and configuration may not have occured as " +
|
"creator registration and configuration may not have occurred as " +
|
||||||
"intended, and components may not be proxied as expected. Check to " +
|
"intended, and components may not be proxied as expected. Check to " +
|
||||||
"ensure that %s has been @Import'ed on the same class where these " +
|
"ensure that %s has been @Import'ed on the same class where these " +
|
||||||
"annotations are declared; otherwise remove the import of %s " +
|
"annotations are declared; otherwise remove the import of %s " +
|
||||||
|
|
|
@ -138,7 +138,7 @@ public class ConnectorServerFactoryBean extends MBeanRegistrationSupport
|
||||||
* the {@code JMXConnectorServer} will be started in a separate thread.
|
* the {@code JMXConnectorServer} will be started in a separate thread.
|
||||||
* If the {@code daemon} flag is set to {@code true}, that thread will be
|
* If the {@code daemon} flag is set to {@code true}, that thread will be
|
||||||
* started as a daemon thread.
|
* started as a daemon thread.
|
||||||
* @throws JMException if a problem occured when registering the connector server
|
* @throws JMException if a problem occurred when registering the connector server
|
||||||
* with the {@code MBeanServer}
|
* with the {@code MBeanServer}
|
||||||
* @throws IOException if there is a problem starting the connector server
|
* @throws IOException if there is a problem starting the connector server
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2002-2012 the original author or authors.
|
* Copyright 2002-2016 the original author or authors.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
@ -51,7 +51,7 @@ public class UncategorizedJmsException extends JmsException {
|
||||||
* but can also be a JNDI NamingException or the like.
|
* but can also be a JNDI NamingException or the like.
|
||||||
*/
|
*/
|
||||||
public UncategorizedJmsException(Throwable cause) {
|
public UncategorizedJmsException(Throwable cause) {
|
||||||
super("Uncategorized exception occured during JMS processing", cause);
|
super("Uncategorized exception occurred during JMS processing", cause);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2002-2015 the original author or authors.
|
* Copyright 2002-2016 the original author or authors.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
@ -897,7 +897,7 @@ public class Jaxb2Marshaller implements MimeMarshaller, MimeUnmarshaller, Generi
|
||||||
/**
|
/**
|
||||||
* Convert the given {@code JAXBException} to an appropriate exception from the
|
* Convert the given {@code JAXBException} to an appropriate exception from the
|
||||||
* {@code org.springframework.oxm} hierarchy.
|
* {@code org.springframework.oxm} hierarchy.
|
||||||
* @param ex {@code JAXBException} that occured
|
* @param ex {@code JAXBException} that occurred
|
||||||
* @return the corresponding {@code XmlMappingException}
|
* @return the corresponding {@code XmlMappingException}
|
||||||
*/
|
*/
|
||||||
protected XmlMappingException convertJaxbException(JAXBException ex) {
|
protected XmlMappingException convertJaxbException(JAXBException ex) {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2002-2015 the original author or authors.
|
* Copyright 2002-2016 the original author or authors.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
@ -461,7 +461,7 @@ public class JibxMarshaller extends AbstractMarshaller implements InitializingBe
|
||||||
* {@code org.springframework.oxm} hierarchy.
|
* {@code org.springframework.oxm} hierarchy.
|
||||||
* <p>A boolean flag is used to indicate whether this exception occurs during marshalling or
|
* <p>A boolean flag is used to indicate whether this exception occurs during marshalling or
|
||||||
* unmarshalling, since JiBX itself does not make this distinction in its exception hierarchy.
|
* unmarshalling, since JiBX itself does not make this distinction in its exception hierarchy.
|
||||||
* @param ex {@code JiBXException} that occured
|
* @param ex {@code JiBXException} that occurred
|
||||||
* @param marshalling indicates whether the exception occurs during marshalling ({@code true}),
|
* @param marshalling indicates whether the exception occurs during marshalling ({@code true}),
|
||||||
* or unmarshalling ({@code false})
|
* or unmarshalling ({@code false})
|
||||||
* @return the corresponding {@code XmlMappingException}
|
* @return the corresponding {@code XmlMappingException}
|
||||||
|
|
Loading…
Reference in New Issue