-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
JBMETA-457 Add missing metadata/parser support for cookie attributes.
- Loading branch information
Showing
7 changed files
with
120 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 34 additions & 0 deletions
34
web/src/main/java/org/jboss/metadata/web/spec/AttributeValueMetaData.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
/* | ||
* Copyright The JBoss Metadata Authors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
package org.jboss.metadata.web.spec; | ||
|
||
import org.jboss.metadata.javaee.support.IdMetaDataImplWithDescriptions; | ||
|
||
/** | ||
* Describes an attribute name/value pair. | ||
* @author Paul Ferraro | ||
*/ | ||
public class AttributeValueMetaData extends IdMetaDataImplWithDescriptions { | ||
private static final long serialVersionUID = 1; | ||
|
||
private String attributeName; | ||
private String attributeValue; | ||
|
||
public String getAttributeName() { | ||
return this.attributeName; | ||
} | ||
|
||
public void setAttributeName(String attributeName) { | ||
this.attributeName = attributeName; | ||
} | ||
|
||
public String getAttributeValue() { | ||
return this.attributeValue; | ||
} | ||
|
||
public void setAttributeValue(String attributeValue) { | ||
this.attributeValue = attributeValue; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters