compilation error after this commit. [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:compile (default-compile) on project org.wso2.carbon.user.api: Compilation failure [ERROR] /home/amila/projects/trunk/kernel/core/org.wso2.carbon.user.api/src/main/java/org/wso2/carbon/user/api/UserStoreManager.java:[466,4] cannot find symbol [ERROR] symbol : class Property [ERROR] location: interface org.wso2.carbon.user.api.UserStoreManager
Please fix. thanks, Amila. On Wed, Jun 26, 2013 at 2:57 PM, <[email protected]> wrote: > Author: [email protected] > Date: Wed Jun 26 14:57:06 2013 > New Revision: 176170 > URL: http://wso2.org/svn/browse/wso2?view=rev&revision=176170 > > Log: > committing pushpalankas patch for > https://wso2.org/jira/browse/IDENTITY-1052 > > Modified: > > > carbon/kernel/trunk/core/org.wso2.carbon.user.api/src/main/java/org/wso2/carbon/user/api/RealmConfiguration.java > > > carbon/kernel/trunk/core/org.wso2.carbon.user.api/src/main/java/org/wso2/carbon/user/api/UserRealmService.java > > > carbon/kernel/trunk/core/org.wso2.carbon.user.api/src/main/java/org/wso2/carbon/user/api/UserStoreManager.java > > Modified: > carbon/kernel/trunk/core/org.wso2.carbon.user.api/src/main/java/org/wso2/carbon/user/api/RealmConfiguration.java > URL: > http://wso2.org/svn/browse/wso2/carbon/kernel/trunk/core/org.wso2.carbon.user.api/src/main/java/org/wso2/carbon/user/api/RealmConfiguration.java?rev=176170&r1=176169&r2=176170&view=diff > > ============================================================================== > --- > carbon/kernel/trunk/core/org.wso2.carbon.user.api/src/main/java/org/wso2/carbon/user/api/RealmConfiguration.java > (original) > +++ > carbon/kernel/trunk/core/org.wso2.carbon.user.api/src/main/java/org/wso2/carbon/user/api/RealmConfiguration.java > Wed Jun 26 14:57:06 2013 > @@ -16,10 +16,10 @@ > > package org.wso2.carbon.user.api; > > -import java.util.*; > - > import org.wso2.carbon.base.MultitenantConstants; > > +import java.util.*; > + > /** > * The object representing the realm configuration. > */ > @@ -33,6 +33,7 @@ > protected String adminPassword = null; > protected String everyOneRoleName = null; > protected String realmClassName = null; > + protected String description = null; > protected List<String> restrictedDomainsForSelfSignUp = new > ArrayList<String>(); > protected List<String> reservedRoleNames = new ArrayList<String>();; > protected Map<String, String> userStoreProperties = new > HashMap<String, String>(); > @@ -287,4 +288,12 @@ > public Map<String, Map<String, String>> getMultipleCredentialProps() { > return multipleCredentialProps; > } > + > + public String getDescription() { > + return description; > + } > + > + public void setDescription(String description) { > + this.description = description; > + } > } > > Modified: > carbon/kernel/trunk/core/org.wso2.carbon.user.api/src/main/java/org/wso2/carbon/user/api/UserRealmService.java > URL: > http://wso2.org/svn/browse/wso2/carbon/kernel/trunk/core/org.wso2.carbon.user.api/src/main/java/org/wso2/carbon/user/api/UserRealmService.java?rev=176170&r1=176169&r2=176170&view=diff > > ============================================================================== > --- > carbon/kernel/trunk/core/org.wso2.carbon.user.api/src/main/java/org/wso2/carbon/user/api/UserRealmService.java > (original) > +++ > carbon/kernel/trunk/core/org.wso2.carbon.user.api/src/main/java/org/wso2/carbon/user/api/UserRealmService.java > Wed Jun 26 14:57:06 2013 > @@ -61,5 +61,9 @@ > * Get tenant mgt configuration read from tenant-mgt.xml > */ > TenantMgtConfiguration getTenantMgtConfiguration(); > - > + > + /** > + * Set bootstrap realm configuration > + */ > + void setBootstrapRealmConfiguration(RealmConfiguration > realmConfiguration); > } > > Modified: > carbon/kernel/trunk/core/org.wso2.carbon.user.api/src/main/java/org/wso2/carbon/user/api/UserStoreManager.java > URL: > http://wso2.org/svn/browse/wso2/carbon/kernel/trunk/core/org.wso2.carbon.user.api/src/main/java/org/wso2/carbon/user/api/UserStoreManager.java?rev=176170&r1=176169&r2=176170&view=diff > > ============================================================================== > --- > carbon/kernel/trunk/core/org.wso2.carbon.user.api/src/main/java/org/wso2/carbon/user/api/UserStoreManager.java > (original) > +++ > carbon/kernel/trunk/core/org.wso2.carbon.user.api/src/main/java/org/wso2/carbon/user/api/UserStoreManager.java > Wed Jun 26 14:57:06 2013 > @@ -458,4 +458,11 @@ > */ > boolean isSCIMEnabled() throws UserStoreException; > > + /** > + * Get the list of properties to be submitted via the UI > + * > + * @return > + */ > + Property[] getDefaultUserStoreProperties(); > + > } > \ No newline at end of file > _______________________________________________ > Commits mailing list > [email protected] > http://wso2.org/cgi-bin/mailman/listinfo/commits > -- *Amila Suriarachchi* Software Architect WSO2 Inc. ; http://wso2.com lean . enterprise . middleware phone : +94 71 3082805
_______________________________________________ Dev mailing list [email protected] http://wso2.org/cgi-bin/mailman/listinfo/dev
